diff --git a/README.md b/README.md index 7d083b8..8e0eba1 100644 --- a/README.md +++ b/README.md @@ -1,40 +1,59 @@ -# Search Engine Scraper +# Search Engine Scraper - se-scraper -This node module supports scraping several search engines. +[![npm](https://badgen.now.sh/npm/v/se-scraper)](https://www.npmjs.com/package/se-scraper) +[![Known Vulnerabilities](https://snyk.io/test/github/NikolaiT/se-scraper/badge.svg)](https://snyk.io/test/github/NikolaiT/se-scraper) -Right now it's possible to scrape the following search engines +This node module allows you to scrape search engines concurrently with different proxies. +If you don't have much technical experience or don't want to purchase proxies, you can use [my scraping service](https://scrapeulous.com/). + +##### Table of Contents +- [Installation](#installation) +- [Quickstart](#quickstart) +- [Using Proxies](#proxies) +- [Examples](#examples) +- [Scraping Model](#scraping-model) +- [Technical Notes](#technical-notes) +- [Advanced Usage](#advanced-usage) + + +Se-scraper supports the following search engines: * Google * Google News * Google News App version (https://news.google.com) * Google Image * Bing +* Bing News * Baidu * Youtube * Infospace * Duckduckgo * Webcrawler * Reuters -* cnbc +* Cnbc * Marketwatch -This module uses puppeteer and puppeteer-cluster (modified version). It was created by the Developer of https://github.com/NikolaiT/GoogleScraper, a module with 1800 Stars on Github. +This module uses puppeteer and a modified version of [puppeteer-cluster](https://github.com/thomasdondorf/puppeteer-cluster/). It was created by the Developer of [GoogleScraper](https://github.com/NikolaiT/GoogleScraper), a module with 1800 Stars on Github. -### Quickstart +## Installation -**Note**: If you **don't** want puppeteer to download a complete chromium browser, add this variable to your environments. Then this library is not guaranteed to run out of the box. +You need a working installation of **node** and the **npm** package manager. -```bash -export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 -``` - -Then install with +Install **se-scraper** by entering the following command in your terminal ```bash npm install se-scraper ``` -then create a file `run.js` with the following contents +If you **don't** want puppeteer to download a complete chromium browser, add this variable to your environment. Then this library is not guaranteed to run out of the box. + +```bash +export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 +``` + +## Quickstart + +Create a file named `run.js` with the following contents ```js const se_scraper = require('se-scraper'); @@ -58,9 +77,9 @@ se_scraper.scrape(config, callback); Start scraping by firing up the command `node run.js` -#### Scrape with proxies +## Proxies -**se-scraper** will create one browser instance per proxy. So the maximal ammount of concurency is equivalent to the number of proxies plus one (your own IP). +**se-scraper** will create one browser instance per proxy. So the maximal amount of concurrency is equivalent to the number of proxies plus one (your own IP). ```js const se_scraper = require('se-scraper'); @@ -84,16 +103,24 @@ function callback(err, response) { se_scraper.scrape(config, callback); ``` -With a proxy file such as (invalid proxies of course) +With a proxy file such as ```text socks5://53.34.23.55:55523 socks4://51.11.23.22:22222 ``` -This will scrape with **three** browser instance each having their own IP address. Unfortunately, it is currently not possible to scrape with different proxies per tab (chromium issue). +This will scrape with **three** browser instance each having their own IP address. Unfortunately, it is currently not possible to scrape with different proxies per tab. Chromium does not support that. -### Scraping Model +## Examples + +* [Simple example scraping google](examples/quickstart.js) yields [these results](examples/results/data.json) +* [Scrape with one proxy per browser](examples/proxies.js) yields [these results](examples/results/proxyresults.json) +* [Scrape 100 keywords on Bing with multible tabs in one browser](examples/multiple_tabs.js) produces [this](examples/results/bing.json) +* [Inject your own scraping logic](examples/pluggable.js) + + +## Scraping Model **se-scraper** scrapes search engines only. In order to introduce concurrency into this library, it is necessary to define the scraping model. Then we can decide how we divide and conquer. @@ -129,18 +156,11 @@ Solution: 2. Modify [puppeteer-cluster library](https://github.com/thomasdondorf/puppeteer-cluster) to accept a list of proxy strings and then pop() from this list at every new call to `workerInstance()` in https://github.com/thomasdondorf/puppeteer-cluster/blob/master/src/Cluster.ts I wrote an [issue here](https://github.com/thomasdondorf/puppeteer-cluster/issues/107). **I ended up doing this**. -### Technical Notes +## Technical Notes Scraping is done with a headless chromium browser using the automation library puppeteer. Puppeteer is a Node library which provides a high-level API to control headless Chrome or Chromium over the DevTools Protocol. - No multithreading is supported for now. Only one scraping worker per `scrape()` call. - - We will soon support parallelization. **se-scraper** will support an architecture similar to: - - 1. https://antoinevastel.com/crawler/2018/09/20/parallel-crawler-puppeteer.html - 2. https://docs.browserless.io/blog/2018/06/04/puppeteer-best-practices.html - -If you need to deploy scraping to the cloud (AWS or Azure), you can contact me at hire@incolumitas.com +If you need to deploy scraping to the cloud (AWS or Azure), you can contact me at **hire@incolumitas.com** The chromium browser is started with the following flags to prevent scraping detection. @@ -162,7 +182,7 @@ var ADDITIONAL_CHROME_FLAGS = [ ``` Furthermore, to avoid loading unnecessary ressources and to speed up -scraping a great deal, we instruct chrome to not load images and css: +scraping a great deal, we instruct chrome to not load images and css and media: ```js await page.setRequestInterception(true); @@ -177,7 +197,7 @@ page.on('request', (req) => { }); ``` -### Making puppeteer and headless chrome undetectable +#### Making puppeteer and headless chrome undetectable Consider the following resources: @@ -204,59 +224,69 @@ let config = { It will create a screenshot named `headless-test-result.png` in the directory where the scraper was started that shows whether all test have passed. -### Advanced Usage +## Advanced Usage -Use se-scraper by calling it with a script such as the one below. +Use **se-scraper** by calling it with a script such as the one below. ```js const se_scraper = require('se-scraper'); -const resolve = require('path').resolve; -// options for scraping -event = { +let config = { // the user agent to scrape with user_agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36', // if random_user_agent is set to True, a random user agent is chosen random_user_agent: true, - // whether to select manual settings in visible mode - set_manual_settings: false, - // log ip address data - log_ip_address: false, - // log http headers - log_http_headers: false, // how long to sleep between requests. a random sleep interval within the range [a,b] // is drawn before every request. empty string for no sleeping. - sleep_range: '[1,1]', + sleep_range: '[1,2]', // which search engine to scrape search_engine: 'google', - compress: false, // compress + // whether debug information should be printed + // debug info is useful for developers when debugging debug: false, + // whether verbose program output should be printed + // this output is informational verbose: true, - keywords: ['scrapeulous.com'], + // an array of keywords to scrape + keywords: ['scrapeulous.com', 'scraping search engines', 'scraping service scrapeulous', 'learn js'], + // alternatively you can specify a keyword_file. this overwrites the keywords array + keyword_file: '', + // the number of pages to scrape for each keyword + num_pages: 2, // whether to start the browser in headless mode headless: true, - // the number of pages to scrape for each keyword - num_pages: 1, // path to output file, data will be stored in JSON - output_file: '', - // whether to prevent images, css, fonts and media from being loaded + output_file: 'examples/results/advanced.json', + // whether to prevent images, css, fonts from being loaded // will speed up scraping a great deal block_assets: true, // path to js module that extends functionality // this module should export the functions: // get_browser, handle_metadata, close_browser + // must be an absolute path to the module //custom_func: resolve('examples/pluggable.js'), custom_func: '', - // path to a proxy file, one proxy per line. Example: + // use a proxy for all connections + // example: 'socks5://78.94.172.42:1080' + // example: 'http://118.174.233.10:48400' + proxy: '', + // a file with one proxy per line. Example: // socks5://78.94.172.42:1080 // http://118.174.233.10:48400 proxy_file: '', - proxies: [], // check if headless chrome escapes common detection techniques // this is a quick test and should be used for debugging test_evasion: false, - // settings for puppeteer-cluster - monitor: false, + // log ip address data + log_ip_address: false, + // log http headers + log_http_headers: false, + puppeteer_cluster_config: { + timeout: 10 * 60 * 1000, // max timeout set to 10 minutes + monitor: false, + concurrency: 1, // one scraper per tab + maxConcurrency: 2, // scrape with 2 tabs + } }; function callback(err, response) { @@ -275,198 +305,4 @@ function callback(err, response) { se_scraper.scrape(config, callback); ``` -Supported options for the `search_engine` config key: - -```javascript -'google' -'google_news_old' -'google_news' -'google_image' -'bing' -'bing_news' -'infospace' -'webcrawler' -'baidu' -'youtube' -'duckduckgo_news' -'reuters' -'cnbc' -'marketwatch' -``` - -Output for the above script on my machine: - -```text -{ 'scraping scrapeulous.com': - { '1': - { time: 'Tue, 29 Jan 2019 21:39:22 GMT', - num_results: 'Ungefähr 145 Ergebnisse (0,18 Sekunden) ', - no_results: false, - effective_query: '', - results: - [ { link: 'https://scrapeulous.com/', - title: - 'Scrapeuloushttps://scrapeulous.com/Im CacheDiese Seite übersetzen', - snippet: - 'Scrapeulous.com allows you to scrape various search engines automatically ... or to find hidden links, Scrapeulous.com enables you to scrape a ever increasing ...', - visible_link: 'https://scrapeulous.com/', - date: '', - rank: 1 }, - { link: 'https://scrapeulous.com/about/', - title: - 'About - Scrapeuloushttps://scrapeulous.com/about/Im CacheDiese Seite übersetzen', - snippet: - 'Scrapeulous.com allows you to scrape various search engines automatically and in large quantities. The business requirement to scrape information from ...', - visible_link: 'https://scrapeulous.com/about/', - date: '', - rank: 2 }, - { link: 'https://scrapeulous.com/howto/', - title: - 'Howto - Scrapeuloushttps://scrapeulous.com/howto/Im CacheDiese Seite übersetzen', - snippet: - 'We offer scraping large amounts of keywords for the Google Search Engine. Large means any number of keywords between 40 and 50000. Additionally, we ...', - visible_link: 'https://scrapeulous.com/howto/', - date: '', - rank: 3 }, - { link: 'https://github.com/NikolaiT/se-scraper', - title: - 'GitHub - NikolaiT/se-scraper: Javascript scraping module based on ...https://github.com/NikolaiT/se-scraperIm CacheDiese Seite übersetzen', - snippet: - '24.12.2018 - Javascript scraping module based on puppeteer for many different search ... for many different search engines... https://scrapeulous.com/.', - visible_link: 'https://github.com/NikolaiT/se-scraper', - date: '24.12.2018 - ', - rank: 4 }, - { link: - 'https://github.com/NikolaiT/GoogleScraper/blob/master/README.md', - title: - 'GoogleScraper/README.md at master · NikolaiT/GoogleScraper ...https://github.com/NikolaiT/GoogleScraper/blob/.../README.mdIm CacheÄhnliche SeitenDiese Seite übersetzen', - snippet: - 'GoogleScraper - Scraping search engines professionally. Scrapeulous.com - Scraping Service. GoogleScraper is a open source tool and will remain a open ...', - visible_link: - 'https://github.com/NikolaiT/GoogleScraper/blob/.../README.md', - date: '', - rank: 5 }, - { link: 'https://googlescraper.readthedocs.io/', - title: - 'Welcome to GoogleScraper\'s documentation! — GoogleScraper ...https://googlescraper.readthedocs.io/Im CacheDiese Seite übersetzen', - snippet: - 'Welcome to GoogleScraper\'s documentation!¶. Contents: GoogleScraper - Scraping search engines professionally · Scrapeulous.com - Scraping Service ...', - visible_link: 'https://googlescraper.readthedocs.io/', - date: '', - rank: 6 }, - { link: 'https://incolumitas.com/pages/scrapeulous/', - title: - 'Coding, Learning and Business Ideas – Scrapeulous.com - Incolumitashttps://incolumitas.com/pages/scrapeulous/Im CacheDiese Seite übersetzen', - snippet: - 'A scraping service for scientists, marketing professionals, analysts or SEO folk. In autumn 2018, I created a scraping service called scrapeulous.com. There you ...', - visible_link: 'https://incolumitas.com/pages/scrapeulous/', - date: '', - rank: 7 }, - { link: 'https://incolumitas.com/', - title: - 'Coding, Learning and Business Ideashttps://incolumitas.com/Im CacheDiese Seite übersetzen', - snippet: - 'Scraping Amazon Reviews using Headless Chrome Browser and Python3. Posted on Mi ... GoogleScraper Tutorial - How to scrape 1000 keywords with Google.', - visible_link: 'https://incolumitas.com/', - date: '', - rank: 8 }, - { link: 'https://en.wikipedia.org/wiki/Search_engine_scraping', - title: - 'Search engine scraping - Wikipediahttps://en.wikipedia.org/wiki/Search_engine_scrapingIm CacheDiese Seite übersetzen', - snippet: - 'Search engine scraping is the process of harvesting URLs, descriptions, or other information from search engines such as Google, Bing or Yahoo. This is a ...', - visible_link: 'https://en.wikipedia.org/wiki/Search_engine_scraping', - date: '', - rank: 9 }, - { link: - 'https://readthedocs.org/projects/googlescraper/downloads/pdf/latest/', - title: - 'GoogleScraper Documentation - Read the Docshttps://readthedocs.org/projects/googlescraper/downloads/.../latest...Im CacheDiese Seite übersetzen', - snippet: - '23.12.2018 - Contents: 1 GoogleScraper - Scraping search engines professionally. 1. 1.1 ... For this reason, I created the web service scrapeulous.com.', - visible_link: - 'https://readthedocs.org/projects/googlescraper/downloads/.../latest...', - date: '23.12.2018 - ', - rank: 10 } ] }, - '2': - { time: 'Tue, 29 Jan 2019 21:39:24 GMT', - num_results: 'Seite 2 von ungefähr 145 Ergebnissen (0,20 Sekunden) ', - no_results: false, - effective_query: '', - results: - [ { link: 'https://pypi.org/project/CountryGoogleScraper/', - title: - 'CountryGoogleScraper · PyPIhttps://pypi.org/project/CountryGoogleScraper/Im CacheDiese Seite übersetzen', - snippet: - 'A module to scrape and extract links, titles and descriptions from various search ... Look [here to get an idea how to use asynchronous mode](http://scrapeulous.', - visible_link: 'https://pypi.org/project/CountryGoogleScraper/', - date: '', - rank: 1 }, - { link: 'https://www.youtube.com/watch?v=a6xn6rc9GbI', - title: - 'scrapeulous intro - YouTubehttps://www.youtube.com/watch?v=a6xn6rc9GbIDiese Seite übersetzen', - snippet: - 'scrapeulous intro. Scrapeulous Scrapeulous. Loading... Unsubscribe from ... on Dec 16, 2018. Introduction ...', - visible_link: 'https://www.youtube.com/watch?v=a6xn6rc9GbI', - date: '', - rank: 3 }, - { link: - 'https://www.reddit.com/r/Python/comments/2tii3r/scraping_260_search_queries_in_bing_in_a_matter/', - title: - 'Scraping 260 search queries in Bing in a matter of seconds using ...https://www.reddit.com/.../scraping_260_search_queries_in_bing...Im CacheDiese Seite übersetzen', - snippet: - '24.01.2015 - Scraping 260 search queries in Bing in a matter of seconds using asyncio and aiohttp. (scrapeulous.com). submitted 3 years ago by ...', - visible_link: - 'https://www.reddit.com/.../scraping_260_search_queries_in_bing...', - date: '24.01.2015 - ', - rank: 4 }, - { link: 'https://twitter.com/incolumitas_?lang=de', - title: - 'Nikolai Tschacher (@incolumitas_) | Twitterhttps://twitter.com/incolumitas_?lang=deIm CacheÄhnliche SeitenDiese Seite übersetzen', - snippet: - 'Learn how to scrape millions of url from yandex and google or bing with: http://scrapeulous.com/googlescraper-market-analysis.html … 0 replies 0 retweets 0 ...', - visible_link: 'https://twitter.com/incolumitas_?lang=de', - date: '', - rank: 5 }, - { link: - 'http://blog.shodan.io/hostility-in-the-python-package-index/', - title: - 'Hostility in the Cheese Shop - Shodan Blogblog.shodan.io/hostility-in-the-python-package-index/Im CacheDiese Seite übersetzen', - snippet: - '22.02.2015 - https://zzz.scrapeulous.com/r? According to the author of the website, these hostile packages are used as honeypots. Honeypots are usually ...', - visible_link: 'blog.shodan.io/hostility-in-the-python-package-index/', - date: '22.02.2015 - ', - rank: 6 }, - { link: 'https://libraries.io/github/NikolaiT/GoogleScraper', - title: - 'NikolaiT/GoogleScraper - Libraries.iohttps://libraries.io/github/NikolaiT/GoogleScraperIm CacheDiese Seite übersetzen', - snippet: - 'A Python module to scrape several search engines (like Google, Yandex, Bing, ... https://scrapeulous.com/ ... You can install GoogleScraper comfortably with pip:', - visible_link: 'https://libraries.io/github/NikolaiT/GoogleScraper', - date: '', - rank: 7 }, - { link: 'https://pydigger.com/pypi/CountryGoogleScraper', - title: - 'CountryGoogleScraper - PyDiggerhttps://pydigger.com/pypi/CountryGoogleScraperDiese Seite übersetzen', - snippet: - '19.10.2016 - Look [here to get an idea how to use asynchronous mode](http://scrapeulous.com/googlescraper-260-keywords-in-a-second.html). ### Table ...', - visible_link: 'https://pydigger.com/pypi/CountryGoogleScraper', - date: '19.10.2016 - ', - rank: 8 }, - { link: 'https://hub.docker.com/r/cimenx/data-mining-penandtest/', - title: - 'cimenx/data-mining-penandtest - Docker Hubhttps://hub.docker.com/r/cimenx/data-mining-penandtest/Im CacheDiese Seite übersetzen', - snippet: - 'Container. OverviewTagsDockerfileBuilds · http://scrapeulous.com/googlescraper-260-keywords-in-a-second.html. Docker Pull Command. Owner. profile ...', - visible_link: 'https://hub.docker.com/r/cimenx/data-mining-penandtest/', - date: '', - rank: 9 }, - { link: 'https://www.revolvy.com/page/Search-engine-scraping', - title: - 'Search engine scraping | Revolvyhttps://www.revolvy.com/page/Search-engine-scrapingIm CacheDiese Seite übersetzen', - snippet: - 'Search engine scraping is the process of harvesting URLs, descriptions, or other information from search engines such as Google, Bing or Yahoo. This is a ...', - visible_link: 'https://www.revolvy.com/page/Search-engine-scraping', - date: '', - rank: 10 } ] } } } -``` \ No newline at end of file +[Output for the above script on my machine.](examples/results/advanced.json) \ No newline at end of file diff --git a/TODO.txt b/TODO.md similarity index 77% rename from TODO.txt rename to TODO.md index 1da5957..5808b6f 100644 --- a/TODO.txt +++ b/TODO.md @@ -1,47 +1,47 @@ -24.12.2018 +### 24.12.2018 - fix interface to scrape() [DONE] - add to Github -24.1.2018 - +### 24.1.2018 - fix issue #3: add functionality to add keyword file -27.1.2019 - +### 27.1.2019 - Add functionality to block images and CSS from loading as described here: - https://www.scrapehero.com/how-to-increase-web-scraping-speed-using-puppeteer/ https://www.scrapehero.com/how-to-build-a-web-scraper-using-puppeteer-and-node-js/ -29.1.2019 - +### 29.1.2019 - implement proxy support functionality - implement proxy check - implement scraping more than 1 page - do it for google - and bing - - implement duckduckgo scraping -30.1.2019 +### 30.1.2019 - modify all scrapers to use the generic class where it makes sense - Bing, Baidu, Google, Duckduckgo -7.2.2019 +### 7.2.2019 - add num_requests to test cases [done] -25.2.2019 +### 25.2.2019 - https://antoinevastel.com/crawler/2018/09/20/parallel-crawler-puppeteer.html - add support for browsing with multiple browsers, use this neat library: - https://github.com/thomasdondorf/puppeteer-cluster [done] + + +### 28.2.2019 + - write test case for multiple browsers/proxies + - write test case and example for multiple tabs with bing + - make README.md nicer. https://github.com/thomasdondorf/puppeteer-cluster/blob/master/README.md as template -TODO: +### TODO: - write test case for proxy support and cluster support - add captcha service solving support - check if news instances run the same browser and if we can have one proxy per tab wokers - - write test case for: - pluggable diff --git a/data.json b/data.json deleted file mode 100644 index a7219e5..0000000 --- a/data.json +++ /dev/null @@ -1 +0,0 @@ -{"news":{"1":{"time":"Wed, 27 Feb 2019 19:51:57 GMT","num_results":"Ungefähr 13.440.000.000 Ergebnisse (0,31 Sekunden) ","no_results":false,"effective_query":"","results":[{"link":"https://news.google.de/","title":"Google Newshttps://news.google.de/Ähnliche Seiten","snippet":"Ausführliche und aktuelle Beiträge - von Google News aus verschiedenen Nachrichtenquellen aus aller Welt zusammengetragen.","visible_link":"https://news.google.de/","date":"","rank":1},{"link":"https://www.bild.de/news/startseite/news/news-16804530.bild.html","title":"News aktuell aus Deutschland und der Welt - Bild.dehttps://www.bild.de/news/startseite/news/news-16804530.bild.html","snippet":"vor 2 Tagen - Aktuelle News aus Deutschland, Europa und der Welt. Alle Informationen, Bilder und Videos zu Skandalen, Krisen und Sensationen bei ...","visible_link":"https://www.bild.de/news/startseite/news/news-16804530.bild.html","date":"vor 2 Tagen - ","rank":2},{"link":"https://www.zeit.de/news/index","title":"Schlagzeilen, News und Newsticker | ZEIT ONLINE - Die Zeithttps://www.zeit.de/news/index","snippet":"Aktuelle News und Schlagzeilen im Newsticker von ZEIT ONLINE. Lesen Sie hier die neuesten Nachrichten.","visible_link":"https://www.zeit.de/news/index","date":"","rank":3},{"link":"http://www.news.de/","title":"news.de - mehr als Nachrichten und News, die Sie bewegenwww.news.de/Ähnliche Seiten","snippet":"Promi News und Aktuelles aus Sport, TV & Web. Jetzt Sportnachrichten von Fußball bis Boxen und das Neueste aus Klatsch und Tratsch per Newsticker, Fotos ...","visible_link":"www.news.de/","date":"","rank":4},{"link":"https://www.rtl.de/cms/news.html","title":"News: Aktuelle Nachrichten, Schlagzeilen und Videos | RTL.dehttps://www.rtl.de/cms/news.html","snippet":"Aktuelle Nachrichten aus Deutschland und der Welt auf einen Blick: Bei RTL.de finden Sie die News von heute, spannende Hintergründe und Videos.","visible_link":"https://www.rtl.de/cms/news.html","date":"","rank":5},{"link":"https://www.t-online.de/nachrichten/","title":"Politik aktuell: Nachrichten aus Deutschland, Europa und der Welthttps://www.t-online.de/nachrichten/","snippet":"Trump trifft Kim: Der Nordkorea-Gipfel in Vietnam im News-Blog · Krise in Venezuela: Aktuelle Entwicklungen, ... E-Mails und News unterwegs immer dabei.","visible_link":"https://www.t-online.de/nachrichten/","date":"","rank":6},{"link":"https://www.mopo.de/news","title":"News - Aktuelle Nachrichten aus Deutschland und der Welt. | MOPO.dehttps://www.mopo.de/news","snippet":"News - Aktuelle Nachrichten aus Hamburg, der Welt, zum HSV und der Welt der Promis.","visible_link":"https://www.mopo.de/news","date":"","rank":7},{"link":"https://news.google.com/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFZxYUdjU0FtUmxHZ0pFUlNnQVAB?hl=de&gl=DE&ceid=DE%3Ade","title":"Google News - Schlagzeilen - Neuestehttps://news.google.com/.../CAAqJggKIiBDQkFTRWdvSUwyMHZNRFZxYUdjU0FtUm...","snippet":"Mit Google News kannst du zum Thema Schlagzeilen vollständige Artikel lesen, Videos ansehen und in Tausenden von Titeln stöbern.","visible_link":"https://news.google.com/.../CAAqJggKIiBDQkFTRWdvSUwyMHZNRFZxYUdjU0FtUm...","date":"","rank":8},{"link":"https://www.stern.de/news/","title":"News - Sternhttps://www.stern.de/news/Im Cache","snippet":"News und aktuelle Schlagzeilen im Nachrichten-Ticker von STERN.de. Alle Informationen, Reportagen und Hintergründe im Überblick.","visible_link":"https://www.stern.de/news/","date":"","rank":9}]}},"se-scraper":{"1":{"time":"Wed, 27 Feb 2019 19:52:00 GMT","num_results":"Ungefähr 16.100.000 Ergebnisse (0,19 Sekunden) ","no_results":false,"effective_query":"","results":[{"link":"https://www.npmjs.com/package/se-scraper","title":"se-scraper - npmhttps://www.npmjs.com/package/se-scraperIm CacheDiese Seite übersetzen","snippet":"07.02.2019 - A simple library using puppeteer to scrape several search engines such as Google, Duckduckgo and Bing.","visible_link":"https://www.npmjs.com/package/se-scraper","date":"07.02.2019 - ","rank":1},{"link":"https://github.com/NikolaiT/se-scraper","title":"GitHub - NikolaiT/se-scraper: Javascript scraping module based on ...https://github.com/NikolaiT/se-scraperIm CacheDiese Seite übersetzen","snippet":"Javascript scraping module based on puppeteer for many different search engines... - NikolaiT/se-scraper.","visible_link":"https://github.com/NikolaiT/se-scraper","date":"","rank":2},{"link":"https://swedishicescraper.se/","title":"Swedish Ice Scraper: Onlinehttps://swedishicescraper.se/Im CacheDiese Seite übersetzen","snippet":"The original Swedish Ice Scraper - best in test. ... solid Acrylic Glass and use diamond polishing to sharpen the scraping edges. ... info@swedishicescraper.se.","visible_link":"https://swedishicescraper.se/","date":"","rank":3},{"link":"http://konjugator.reverso.net/konjugation-franzosisch-verb-se%20scraper.html","title":"Konjugation se scraper | Konjugieren verb se scraper Französisch ...konjugator.reverso.net/konjugation-franzosisch-verb-se%20scraper.html","snippet":"Reverso-Konjugation: Konjugation des französischen Verbs se scraper, Konjugator für französische Verben, unregelmäßige Verben, Übersetzung,Grammatik.","visible_link":"konjugator.reverso.net/konjugation-franzosisch-verb-se%20scraper.html","date":"","rank":4},{"link":"https://www.blackhatworld.com/seo/any-yandex-scrapers-available-or-universal-se-scraper.243421/","title":"Any yandex scrapers available? Or universal SE scraper ...https://www.blackhatworld.com › ... › Black Hat SEO ToolsIm CacheDiese Seite übersetzen","snippet":"10.10.2010 - Mostly blogs & stuff like that. Is Hrefer for yandex only or there are other SEs? How much is it? Advertise on BHW ...","visible_link":"https://www.blackhatworld.com › ... › Black Hat SEO Tools","date":"10.10.2010 - ","rank":5},{"link":"https://www.friatec.de/content/friatec/en/Technical-Plastics/FRIATOOLS-Technical-Equipment/Mechanical-tools/index.html","title":"FRIATOOLS Scraper tools and mechanical tooling - Friatec AGhttps://www.friatec.de/content/friatec/en/...tools/index.htmlIm CacheDiese Seite übersetzen","snippet":"FRIATOOLS Scraper tools and mechanical tooling. ... FWSG SE 63 - 315, 613562 - 613574, saddle area, pipe ends, d 63 - d 315, SDR 11 - SDR 33. FWSG 710 ...","visible_link":"https://www.friatec.de/content/friatec/en/...tools/index.html","date":"","rank":6},{"link":"https://www.friatec.de/content/friatec/en/Technical-Plastics/FRIATOOLS-Technical-Equipment/Downloads/index.html","title":"Downloads - Friatechttps://www.friatec.de/content/friatec/en/Technical.../index.htmlIm CacheDiese Seite übersetzen","snippet":"Compact Scraper Tool for pipe ends and outlets FWSG RA · Scraper Tool for pipe ends and saddle surfaces (FWSG SE). Brochures Mechanical Tools.","visible_link":"https://www.friatec.de/content/friatec/en/Technical.../index.html","date":"","rank":7},{"link":"https://www.amazon.de/Calli-Edelstahl-Schokolade-Flugzeug-Werkzeug/dp/B01JJ96DJE","title":"Calli Edelstahl Käse Scraper Schokolade reiben Messer Flugzeug ...https://www.amazon.de/Calli-Edelstahl-Schokolade-Flugzeug.../dp/B01JJ96DJEIm Cache","snippet":"Amazon.de: Küchen- und Haushaltsartikel online - Calli Edelstahl Käse Scraper Schokolade reiben Messer Flugzeug Cutter. Beschreibung: Edelstahl Käse ...","visible_link":"https://www.amazon.de/Calli-Edelstahl-Schokolade-Flugzeug.../dp/B01JJ96DJE","date":"","rank":8}]}}} \ No newline at end of file diff --git a/examples/multiple_tabs.js b/examples/multiple_tabs.js new file mode 100644 index 0000000..26595af --- /dev/null +++ b/examples/multiple_tabs.js @@ -0,0 +1,134 @@ +const se_scraper = require('./../index.js'); + +const Cluster = { + CONCURRENCY_PAGE: 1, // shares cookies, etc. + CONCURRENCY_CONTEXT: 2, // no cookie sharing (uses contexts) + CONCURRENCY_BROWSER: 3, // no cookie sharing and individual processes (uses contexts) +}; + +let keywords = ['New York', + 'Los Angeles', + 'Chicago', + 'Houston', + 'Philadelphia', + 'Phoenix', + 'San Antonio', + 'San Diego', + 'Dallas', + 'San Jose', + 'Austin', + 'Indianapolis', + 'Jacksonville', + 'San Francisco', + 'Columbus', + 'Charlotte', + 'Fort Worth', + 'Detroit', + 'El Paso', + 'Memphis', + 'Seattle', + 'Denver', + 'Washington', + 'Boston', + 'Nashville-Davidson', + 'Baltimore', + 'Oklahoma City', + 'Louisville/Jefferson County', + 'Portland', + 'Las Vegas', + 'Milwaukee', + 'Albuquerque', + 'Tucson', + 'Fresno', + 'Sacramento', + 'Long Beach', + 'Kansas City', + 'Mesa', + 'Virginia Beach', + 'Atlanta', + 'Colorado Springs', + 'Omaha', + 'Raleigh', + 'Miami', + 'Oakland', + 'Minneapolis', + 'Tulsa', + 'Cleveland', + 'Wichita', + 'Arlington', + 'New Orleans', + 'Bakersfield', + 'Tampa', + 'Honolulu', + 'Aurora', + 'Anaheim', + 'Santa Ana', + 'St. Louis', + 'Riverside', + 'Corpus Christi', + 'Lexington-Fayette', + 'Pittsburgh', + 'Anchorage', + 'Stockton', + 'Cincinnati', + 'St. Paul', + 'Toledo', + 'Greensboro', + 'Newark', + 'Plano', + 'Henderson', + 'Lincoln', + 'Buffalo', + 'Jersey City', + 'Chula Vista', + 'Fort Wayne', + 'Orlando', + 'St. Petersburg', + 'Chandler', + 'Laredo', + 'Norfolk', + 'Durham', + 'Madison', + 'Lubbock', + 'Irvine', + 'Winston-Salem', + 'Glendale', + 'Garland', + 'Hialeah', + 'Reno', + 'Chesapeake', + 'Gilbert', + 'Baton Rouge', + 'Irving', + 'Scottsdale', + 'North Las Vegas', + 'Fremont', + 'Boise City', + 'Richmond', + 'San Bernardino']; + +let config = { + search_engine: 'bing', + debug: false, + verbose: true, + keywords: keywords, + num_pages: 1, // how many pages per keyword + output_file: 'examples/results/bing.json', + log_ip_address: false, + headless: true, + puppeteer_cluster_config: { + timeout: 10 * 60 * 1000, // max timeout set to 10 minutes + monitor: false, + concurrency: Cluster.CONCURRENCY_PAGE, // one scraper per tab + maxConcurrency: 7, // scrape with 7 tabs + } +}; + +function callback(err, response) { + if (err) { + console.error(err) + } + console.dir(response, {depth: null, colors: true}); +} + +se_scraper.scrape(config, callback); \ No newline at end of file diff --git a/examples/proxies.js b/examples/proxies.js index 46a082a..0d758dc 100644 --- a/examples/proxies.js +++ b/examples/proxies.js @@ -3,17 +3,17 @@ const se_scraper = require('./../index.js'); let config = { search_engine: 'google', debug: false, - verbose: false, - keywords: ['news', 'scrapeulous.com', 'incolumitas.com', 'i work too much'], + verbose: true, + keywords: ['news', 'scrapeulous.com', 'incolumitas.com', 'i work too much', 'what to do?', 'javascript is hard'], num_pages: 1, - output_file: 'data.json', + output_file: 'examples/results/proxyresults.json', proxy_file: '/home/nikolai/.proxies', // one proxy per line - log_ip_address: true, + log_ip_address: false, }; function callback(err, response) { if (err) { console.error(err) } - console.dir(response, {depth: null, colors: true}); + //console.dir(response, {depth: null, colors: true}); } se_scraper.scrape(config, callback); \ No newline at end of file diff --git a/examples/quickstart.js b/examples/quickstart.js index 223fec6..611b06c 100644 --- a/examples/quickstart.js +++ b/examples/quickstart.js @@ -6,7 +6,7 @@ let config = { verbose: false, keywords: ['news', 'se-scraper'], num_pages: 1, - output_file: 'data.json', + output_file: 'examples/results/data.json', }; function callback(err, response) { diff --git a/examples/results/advanced.json b/examples/results/advanced.json new file mode 100644 index 0000000..f8b8c6f --- /dev/null +++ b/examples/results/advanced.json @@ -0,0 +1,730 @@ +{ + "scrapeulous.com": { + "1": { + "time": "Thu, 28 Feb 2019 14:22:28 GMT", + "num_results": "Ungefähr 200 Ergebnisse (0,25 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://scrapeulous.com/", + "title": "Scrapeuloushttps://scrapeulous.com/Im CacheDiese Seite übersetzen", + "snippet": "Scraping search engines like Google, Bing and Duckduckgo in large quantities from many geographical regions with real browsers.", + "visible_link": "https://scrapeulous.com/", + "date": "", + "rank": 1 + }, + { + "link": "https://scrapeulous.com/about/", + "title": "Scraping search engines with real browsers in ... - Scrapeulous.comhttps://scrapeulous.com/about/Im CacheDiese Seite übersetzen", + "snippet": "Scrapeulous.com allows you to scrape various search engines automatically and in large quantities. The business requirement to scrape information from ...", + "visible_link": "https://scrapeulous.com/about/", + "date": "", + "rank": 2 + }, + { + "link": "https://blog.scrapeulous.com/", + "title": "Scrapeulous.com Bloghttps://blog.scrapeulous.com/Im CacheDiese Seite übersetzen", + "snippet": "04.02.2019 - This clean blog serves to publish the latest announcements and changes for scrapeulous.com We will publish instrucitons and general tutorials ...", + "visible_link": "https://blog.scrapeulous.com/", + "date": "04.02.2019 - ", + "rank": 3 + }, + { + "link": "https://scrapeulous.com/news/", + "title": "Scraping search engines with real browsers in large ... - Scrapeuloushttps://scrapeulous.com/news/Im CacheDiese Seite übersetzen", + "snippet": "Scrapeulous.com News Api allows you to query the most recent world news for an index composed of developed market equities. The performance of those ...", + "visible_link": "https://scrapeulous.com/news/", + "date": "", + "rank": 4 + }, + { + "link": "https://scrapeulous.com/howto/", + "title": "Scraping search engines with real browsers in ... - Scrapeulous.comhttps://scrapeulous.com/howto/Im CacheDiese Seite übersetzen", + "snippet": "06.02.2019 - We offer scraping large amounts of keywords for the Google Search Engine. Large means any number of keywords between 30 and 50000.", + "visible_link": "https://scrapeulous.com/howto/", + "date": "06.02.2019 - ", + "rank": 5 + }, + { + "link": "https://scrapeulous.com/contact/", + "title": "Contact - Scrapeuloushttps://scrapeulous.com/contact/Im CacheDiese Seite übersetzen", + "snippet": "Contact scrapeulous.com. Your email address. Valid email address where we are going to contact you. We will not send spam mail. Your inquiry.", + "visible_link": "https://scrapeulous.com/contact/", + "date": "", + "rank": 6 + }, + { + "link": "https://scrapeulous.com/faq/", + "title": "Scraping search engines with real browsers in ... - Scrapeulous.comhttps://scrapeulous.com/faq/Im CacheDiese Seite übersetzen", + "snippet": "02.02.2019 - Scraping search engines like Google, Bing and Duckduckgo in large quantities from many geographical regions with real browsers.", + "visible_link": "https://scrapeulous.com/faq/", + "date": "02.02.2019 - ", + "rank": 7 + }, + { + "link": "https://scrapeulous.com/scrape/", + "title": "Scraping search engines with real browsers in large ... - Scrapeuloushttps://scrapeulous.com/scrape/Im CacheDiese Seite übersetzen", + "snippet": "It is super easy to use scrapeulous.com, because you can just upload a text/CSV file with your keywords and submit your email address. With this information ...", + "visible_link": "https://scrapeulous.com/scrape/", + "date": "", + "rank": 8 + }, + { + "link": "https://incolumitas.com/", + "title": "Coding, Learning and Business Ideashttps://incolumitas.com/Im CacheDiese Seite übersetzen", + "snippet": "About · Contact · GoogleScraper · Lichess Autoplay-Bot · Projects · Scrapeulous.com · Site Notice · SVGCaptcha · Home Archives Categories Tags Atom ...", + "visible_link": "https://incolumitas.com/", + "date": "", + "rank": 9 + }, + { + "link": "https://twitter.com/scrapeulous", + "title": "Scrapeulous.com (@scrapeulous) | Twitterhttps://twitter.com/scrapeulousIm CacheDiese Seite übersetzen", + "snippet": "The latest Tweets from Scrapeulous.com (@scrapeulous): \"Creating software to realize the best scraping service at https://t.co/R5NUqSSrB5\"", + "visible_link": "https://twitter.com/scrapeulous", + "date": "", + "rank": 10 + } + ] + }, + "2": { + "time": "Thu, 28 Feb 2019 14:22:30 GMT", + "num_results": "Seite 2 von ungefähr 200 Ergebnissen (0,21 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://incolumitas.com/pages/scrapeulous/", + "title": "Coding, Learning and Business Ideas – Scrapeulous.comhttps://incolumitas.com/pages/scrapeulous/Im CacheDiese Seite übersetzen", + "snippet": "In autumn 2018, I created a scraping service called scrapeulous.com. There you can purchase scrape jobs that allow you to upload a keyword file which in turn ...", + "visible_link": "https://incolumitas.com/pages/scrapeulous/", + "date": "", + "rank": 11 + }, + { + "link": "https://www.youtube.com/watch?v=a6xn6rc9GbI", + "title": "scrapeulous intro - YouTubehttps://www.youtube.com/watch?v=a6xn6rc9GbIDiese Seite übersetzen", + "snippet": "Introduction for https://scrapeulous.com. ... scrapeulous intro. Scrapeulous Scrapeulous. Loading ...", + "visible_link": "https://www.youtube.com/watch?v=a6xn6rc9GbI", + "date": "", + "rank": 12 + }, + { + "link": "https://www.youtube.com/channel/UCJs1Xei5LRefg9GwFYdYhOw", + "title": "Scrapeulous Scrapeulous - YouTubehttps://www.youtube.com/.../UCJs1Xei5LRefg9GwFYdYhOwIm CacheDiese Seite übersetzen", + "snippet": "How to use scrapeulous.com - Duration: 3 minutes, 42 seconds. 32 minutes ago; 4 views. Introduction for https://scrapeulous.com. Show more. This item has ...", + "visible_link": "https://www.youtube.com/.../UCJs1Xei5LRefg9GwFYdYhOw", + "date": "", + "rank": 13 + }, + { + "link": "https://googlescraper.readthedocs.io/en/latest/README.html", + "title": "GoogleScraper - Scraping search engines professionally ...https://googlescraper.readthedocs.io/en/latest/README.htmlIm CacheDiese Seite übersetzen", + "snippet": "Scrapeulous.com - Scraping Service¶. GoogleScraper is a open source tool and will remain a open source tool in the future. Some people however would want ...", + "visible_link": "https://googlescraper.readthedocs.io/en/latest/README.html", + "date": "", + "rank": 14 + }, + { + "link": "https://github.com/NikolaiT/se-scraper", + "title": "GitHub - NikolaiT/se-scraper: Javascript scraping module based on ...https://github.com/NikolaiT/se-scraperIm CacheDiese Seite übersetzen", + "snippet": "const se_scraper = require('se-scraper'); let config = { search_engine: 'google', debug: false, verbose: false, keywords: ['news', 'scraping scrapeulous.com'], ...", + "visible_link": "https://github.com/NikolaiT/se-scraper", + "date": "", + "rank": 15 + }, + { + "link": "https://www.npmjs.com/package/se-scraper", + "title": "se-scraper - npmhttps://www.npmjs.com/package/se-scraperIm CacheDiese Seite übersetzen", + "snippet": "07.02.2019 - homepage. scrapeulous.com. repository. github. last publish. 20 days ago. collaborators. avatar. Test with RunKit · Report a vulnerability. Help.", + "visible_link": "https://www.npmjs.com/package/se-scraper", + "date": "07.02.2019 - ", + "rank": 16 + }, + { + "link": "https://pypi.org/project/CountryGoogleScraper/", + "title": "CountryGoogleScraper · PyPIhttps://pypi.org/project/CountryGoogleScraper/Im CacheDiese Seite übersetzen", + "snippet": "Look [here to get an idea how to use asynchronous mode](http://scrapeulous.com/googlescraper-260-keywords-in-a-second.html). ### Table of Contents 1.", + "visible_link": "https://pypi.org/project/CountryGoogleScraper/", + "date": "", + "rank": 17 + }, + { + "link": "https://medium.com/@scrapeulous/in-case-you-dont-want-to-go-through-the-hassle-of-creating-your-own-well-maintained-scraping-code-32b029985d4a", + "title": "In case you don't want to go through the hassle of creating your own ...https://medium.com/@scrapeulous/in-case-you-dont-want-to-go-through-the-hassle-of-c...", + "snippet": "05.02.2019 - And if you want to use some services when you plan to scraper large amounts of keywords, https://scrapeulous.com/ offers scraping for various ...", + "visible_link": "https://medium.com/@scrapeulous/in-case-you-dont-want-to-go-through-the-hassle-of-c...", + "date": "05.02.2019 - ", + "rank": 18 + }, + { + "link": "https://readthedocs.org/projects/googlescraper/downloads/pdf/latest/", + "title": "GoogleScraper Documentation - Read the Docshttps://readthedocs.org/projects/googlescraper/downloads/.../latest...Im CacheDiese Seite übersetzen", + "snippet": "03.02.2019 - 1.1 Scrapeulous.com - Scraping Service. GoogleScraper is a open source tool and will remain a open source tool in the future. Some people ...", + "visible_link": "https://readthedocs.org/projects/googlescraper/downloads/.../latest...", + "date": "03.02.2019 - ", + "rank": 19 + }, + { + "link": "http://blog.shodan.io/hostility-in-the-python-package-index/", + "title": "Hostility in the Cheese Shop - Shodan Blogblog.shodan.io/hostility-in-the-python-package-index/Im CacheDiese Seite übersetzen", + "snippet": "22.02.2015 - https://zzz.scrapeulous.com/r? According to the author of the website, these hostile packages are used as honeypots. Honeypots are usually ...", + "visible_link": "blog.shodan.io/hostility-in-the-python-package-index/", + "date": "22.02.2015 - ", + "rank": 20 + } + ] + } + }, + "scraping service scrapeulous": { + "1": { + "time": "Thu, 28 Feb 2019 14:22:34 GMT", + "num_results": "Ungefähr 100 Ergebnisse (0,45 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://scrapeulous.com/", + "title": "Scraping search engines with real browsers in large quantitieshttps://scrapeulous.com/Im CacheDiese Seite übersetzen", + "snippet": "Scraping search engines like Google, Bing and Duckduckgo in large ... Scrapeulous.com allows you to scrape various search engines automatically and in large ...", + "visible_link": "https://scrapeulous.com/", + "date": "", + "rank": 1 + }, + { + "link": "https://scrapeulous.com/faq/", + "title": "Scraping search engines with real browsers in ... - Scrapeulous.comhttps://scrapeulous.com/faq/Im CacheDiese Seite übersetzen", + "snippet": "02.02.2019 - Scraping search engines like Google, Bing and Duckduckgo in ... After all, Google itself is the biggest web scraper known in history. ..... We offer general and specialized services to extract and scrape data from the internet.", + "visible_link": "https://scrapeulous.com/faq/", + "date": "02.02.2019 - ", + "rank": 2 + }, + { + "link": "https://googlescraper.readthedocs.io/en/latest/README.html", + "title": "GoogleScraper - Scraping search engines professionally ...https://googlescraper.readthedocs.io/en/latest/README.htmlIm CacheDiese Seite übersetzen", + "snippet": "Scrapeulous.com - Scraping Service¶. GoogleScraper is a open source tool and will remain a open source tool in the future. Some people however would want ...", + "visible_link": "https://googlescraper.readthedocs.io/en/latest/README.html", + "date": "", + "rank": 3 + }, + { + "link": "https://github.com/NikolaiT/se-scraper", + "title": "GitHub - NikolaiT/se-scraper: Javascript scraping module based on ...https://github.com/NikolaiT/se-scraperIm CacheDiese Seite übersetzen", + "snippet": "mdIm CacheÄhnliche SeitenDiese Seite übersetzen', snippet: 'GoogleScraper - Scraping search engines professionally. Scrapeulous.com - Scraping Service.", + "visible_link": "https://github.com/NikolaiT/se-scraper", + "date": "", + "rank": 4 + }, + { + "link": "https://readthedocs.org/projects/googlescraper/downloads/pdf/latest/", + "title": "GoogleScraper Documentation - Read the Docshttps://readthedocs.org/projects/googlescraper/downloads/.../latest...Im CacheDiese Seite übersetzen", + "snippet": "03.02.2019 - Contents: 1 GoogleScraper - Scraping search engines professionally. 1. 1.1 ... For this reason, I created the web service scrapeulous.com.", + "visible_link": "https://readthedocs.org/projects/googlescraper/downloads/.../latest...", + "date": "03.02.2019 - ", + "rank": 5 + }, + { + "link": "https://incolumitas.com/pages/scrapeulous/", + "title": "Coding, Learning and Business Ideas – Scrapeulous.comhttps://incolumitas.com/pages/scrapeulous/Im CacheDiese Seite übersetzen", + "snippet": "A scraping service for scientists, marketing professionals, analysts or SEO folk. In autumn 2018, I created a scraping service called scrapeulous.com. There you ...", + "visible_link": "https://incolumitas.com/pages/scrapeulous/", + "date": "", + "rank": 6 + }, + { + "link": "https://medium.com/@scrapeulous/responses", + "title": "Responses – Scrapeulous Scrapeulous – Mediumhttps://medium.com/@scrapeulous/responsesIm CacheDiese Seite übersetzen", + "snippet": "Responses published by Scrapeulous Scrapeulous on Medium. ... And if you want to use some services when you plan to scraper large amounts of keywords, ...", + "visible_link": "https://medium.com/@scrapeulous/responses", + "date": "", + "rank": 7 + }, + { + "link": "https://www.grepsr.com/", + "title": "Grepsr | Web Scraping Service Platformhttps://www.grepsr.com/Im CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "Simplify data extraction with easy-to-use web scraping service platform and manage it better with powerful features and 24/7 support. Sign up free!", + "visible_link": "https://www.grepsr.com/", + "date": "", + "rank": 8 + }, + { + "link": "https://www.quora.com/Which-one-is-the-best-data-scraping-services", + "title": "Which one is the best data scraping services? - Quorahttps://www.quora.com/Which-one-is-the-best-data-scraping-serv...Diese Seite übersetzen", + "snippet": "We can list N number of data scraping service providers, but the thing is we have ... Scrapeulous.com - A simple solution to scrape various search engines from ...", + "visible_link": "https://www.quora.com/Which-one-is-the-best-data-scraping-serv...", + "date": "", + "rank": 9 + }, + { + "link": "https://www.promptcloud.com/", + "title": "PromptCloud: Fully Managed Web Scraping Servicehttps://www.promptcloud.com/Im CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "Our web scraping service helps you extract data from websites without any technical hassle — leverage our decade-old expertize and dedicated support.", + "visible_link": "https://www.promptcloud.com/", + "date": "", + "rank": 10 + } + ] + }, + "2": { + "time": "Thu, 28 Feb 2019 14:22:36 GMT", + "num_results": "Seite 2 von ungefähr 19 Ergebnissen (0,33 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://en.wikipedia.org/wiki/Search_engine_scraping", + "title": "Search engine scraping - Wikipediahttps://en.wikipedia.org/wiki/Search_engine_scrapingIm CacheDiese Seite übersetzen", + "snippet": "Search engine scraping is the process of harvesting URLs, descriptions, or other information .... When scraping websites and services the legal part is often a big concern for companies, for web scraping it greatly depends on the country a ...", + "visible_link": "https://en.wikipedia.org/wiki/Search_engine_scraping", + "date": "", + "rank": 11 + }, + { + "link": "https://www.reddit.com/r/bigseo/comments/ao71gz/feedback_wanted_search_engine_scraping_software/", + "title": "[Feedback wanted] Search engine scraping software for large ...https://www.reddit.com/.../feedback_wanted_search_engine_scra...Im CacheDiese Seite übersetzen", + "snippet": "I am the creator of [scrapeulous.com](https://scrapeulous.com), a search engine scraping service. Back in 2013 or so, I created GoogleScraper, ...", + "visible_link": "https://www.reddit.com/.../feedback_wanted_search_engine_scra...", + "date": "", + "rank": 12 + }, + { + "link": "https://twitter.com/scrapeulous", + "title": "Scrapeulous.com (@scrapeulous) | Twitterhttps://twitter.com/scrapeulousIm CacheDiese Seite übersetzen", + "snippet": "The latest Tweets from Scrapeulous.com (@scrapeulous): \"Creating software to realize the best scraping service at https://t.co/R5NUqSSrB5\"", + "visible_link": "https://twitter.com/scrapeulous", + "date": "", + "rank": 13 + }, + { + "link": "http://firstpress.com.ng/tag/engine/", + "title": "engine Archives - first pressfirstpress.com.ng/tag/engine/Im CacheDiese Seite übersetzen", + "snippet": "08.02.2019 - I am the creator of scrapeulous.com, a search engine scraping service. Back in 2013 or so, I created GoogleScraper, a simple python library ...", + "visible_link": "firstpress.com.ng/tag/engine/", + "date": "08.02.2019 - ", + "rank": 14 + }, + { + "link": "https://libraries.io/github/NikolaiT/GoogleScraper", + "title": "NikolaiT/GoogleScraper - Libraries.iohttps://libraries.io/github/NikolaiT/GoogleScraperIm CacheDiese Seite übersetzen", + "snippet": "A Python module to scrape several search engines (like Google, Yandex, Bing, Duckduckgo, Baidu and others) by using proxies ... https://scrapeulous.com/.", + "visible_link": "https://libraries.io/github/NikolaiT/GoogleScraper", + "date": "", + "rank": 15 + }, + { + "link": "https://www.tiki-toki.com/timeline/entry/625522/Google-Hacking-History-by-Bishop-Fox/", + "title": "Google Hacking History by Bishop Fox - Tiki-Tokihttps://www.tiki-toki.com/.../Google-Hacking-History-by-Bishop-...Im CacheDiese Seite übersetzen", + "snippet": "Indexed and makes searchable service banners for whole Internet for HTTP (Port 80), .... http://scrapeulous.com/googlescraper-260-keywords-in-a-second.html ...", + "visible_link": "https://www.tiki-toki.com/.../Google-Hacking-History-by-Bishop-...", + "date": "", + "rank": 16 + }, + { + "link": "http://lifehackbuddy.com/ohhqdeh/ptyah5y.php?mdzaiooef=google-scraping", + "title": "Google scraping - LifeHack Buddylifehackbuddy.com/ohhqdeh/ptyah5y.php?mdzaiooef...scrapingIm CacheDiese Seite übersetzen", + "snippet": "03.04.2018 - Some people however would want to quickly have a paid service that lets them scrape some data from Google or any other search engine.", + "visible_link": "lifehackbuddy.com/ohhqdeh/ptyah5y.php?mdzaiooef...scraping", + "date": "03.04.2018 - ", + "rank": 17 + }, + { + "link": "https://www.robtex.com/cidr/167.99.240.0-20", + "title": "Robtexhttps://www.robtex.com/cidr/167.99.240.0-20Im CacheDiese Seite übersetzen", + "snippet": "167.99.240.80, A, unitedprint-se.com · 167.99.240.82, A, protectservice.info ... 167.99.241.130, A, mail.mothlive.info · 167.99.241.135, A, www.scrapeulous.com.", + "visible_link": "https://www.robtex.com/cidr/167.99.240.0-20", + "date": "", + "rank": 18 + }, + { + "link": "https://domain-status.com/archives/2018-9-16/com/transferred/170", + "title": "Page 170 of 227 for .com transferred domains on 2018-09-16https://domain-status.com/archives/2018-9-16/com/.../170Im CacheDiese Seite übersetzen", + "snippet": "16.09.2018 - ... scramblednest.com · scrapeulous.com · scrapling.com · scrapmetalservice.com · scrappysyrups.com · scratch4kidz.com · scratchcardsbonus.", + "visible_link": "https://domain-status.com/archives/2018-9-16/com/.../170", + "date": "16.09.2018 - ", + "rank": 19 + } + ] + } + }, + "scraping search engines": { + "1": { + "time": "Thu, 28 Feb 2019 14:22:28 GMT", + "num_results": "Ungefähr 21.800.000 Ergebnisse (0,47 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://en.wikipedia.org/wiki/Search_engine_scraping", + "title": "Search engine scraping - Wikipediahttps://en.wikipedia.org/wiki/Search_engine_scraping", + "snippet": "", + "visible_link": "https://en.wikipedia.org/wiki/Search_engine_scraping", + "date": "", + "rank": 1 + }, + { + "link": "https://en.wikipedia.org/wiki/Search_engine_scraping", + "title": "Search engine scraping - Wikipediahttps://en.wikipedia.org/wiki/Search_engine_scraping", + "snippet": "", + "visible_link": "https://en.wikipedia.org/wiki/Search_engine_scraping", + "date": "", + "rank": 2 + }, + { + "link": "https://en.wikipedia.org/wiki/Search_engine_scraping", + "title": "Search engine scraping - Wikipediahttps://en.wikipedia.org/wiki/Search_engine_scrapingIm CacheDiese Seite übersetzen", + "snippet": "Search engine scraping is the process of harvesting URLs, descriptions, or other information from search engines such as Google, Bing or Yahoo. This is a specific form of screen scraping or web scraping dedicated to search engines only.", + "visible_link": "https://en.wikipedia.org/wiki/Search_engine_scraping", + "date": "", + "rank": 3 + }, + { + "link": "https://rotatingproxies.com/blog/2017/07/search-engine-easiest-scrape/", + "title": "Which Search Engine is Easiest to Scrape? | RotatingProxies Bloghttps://rotatingproxies.com/blog/.../search-engine-easiest-scrape/Im CacheDiese Seite übersetzen", + "snippet": "23.07.2017 - Without search engines, the internet would be one big pile of mush. Content left, right and center, but nothing tangible to point you in the correct ...", + "visible_link": "https://rotatingproxies.com/blog/.../search-engine-easiest-scrape/", + "date": "23.07.2017 - ", + "rank": 4 + }, + { + "link": "https://stackoverflow.com/questions/5403270/search-engine-that-allows-results-to-be-scraped", + "title": "Search engine that allows results to be scraped? - Stack Overflowhttps://stackoverflow.com/.../search-engine-that-allows-results-to-...Im CacheDiese Seite übersetzen", + "snippet": "12.11.2011 - You might be actually looking for Google JSON Search API: it allows you to ... search Google from your program, and is easier to use than screen-scraping.", + "visible_link": "https://stackoverflow.com/.../search-engine-that-allows-results-to-...", + "date": "12.11.2011 - ", + "rank": 5 + }, + { + "link": "http://www.scrapebox.com/search-engine-scraper", + "title": "Search Engine Scraper - ScrapeBoxwww.scrapebox.com/search-engine-scraperIm CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "With the release of ScrapeBox v2.0 we have created the fastest, most power Search Engine Scraper ever built. It's the first desktop SERP Scraper we have ever ...", + "visible_link": "www.scrapebox.com/search-engine-scraper", + "date": "", + "rank": 6 + }, + { + "link": "https://www.reddit.com/r/scrapinghub/comments/6i3p41/good_search_engine_for_scraping/", + "title": "Good search engine for scraping : scrapinghub - Reddithttps://www.reddit.com/.../scrapinghub/.../good_search_engine_f...Im CacheDiese Seite übersetzen", + "snippet": "Google has anti-scraping captchas so I'm looking for something else, are there any other options?", + "visible_link": "https://www.reddit.com/.../scrapinghub/.../good_search_engine_f...", + "date": "", + "rank": 7 + }, + { + "link": "https://github.com/NikolaiT/GoogleScraper", + "title": "GitHub - NikolaiT/GoogleScraper: A Python module to scrape several ...https://github.com/NikolaiT/GoogleScraperIm CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "A Python module to scrape several search engines (like Google, Yandex, Bing, Duckduckgo, ...). Including asynchronous networking support.", + "visible_link": "https://github.com/NikolaiT/GoogleScraper", + "date": "", + "rank": 8 + }, + { + "link": "http://scraping.pro/search-queries-in-a-search-engine-for-scraping/", + "title": "Search queries in a search engine for scraping - Scraping.proscraping.pro/search-queries-in-a-search-engine-for-scraping/Im CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "10.07.2015 - So you might compose those urls according to your needs, store them in file(s) (since there could be millions of them) and then feed them into a ...", + "visible_link": "scraping.pro/search-queries-in-a-search-engine-for-scraping/", + "date": "10.07.2015 - ", + "rank": 9 + }, + { + "link": "https://www.searchenginejournal.com/scrape-google-serp-custom-extractions/267211/", + "title": "How to Scrape SERPs to Optimize for Search Intent - Search Engine ...https://www.searchenginejournal.com › SEOIm CacheDiese Seite übersetzen", + "snippet": "05.09.2018 - Having trouble gaining visibility for an important set of keywords? Here's how to use custom extractions to analyze SERP intent to diagnose ...", + "visible_link": "https://www.searchenginejournal.com › SEO", + "date": "05.09.2018 - ", + "rank": 10 + }, + { + "link": "https://scrapeulous.com/howto/", + "title": "Scraping search engines with real browsers in large quantitieshttps://scrapeulous.com/howto/Im CacheDiese Seite übersetzen", + "snippet": "06.02.2019 - We offer scraping large amounts of keywords for the Google Search Engine. Large means any number of keywords between 30 and 50000.", + "visible_link": "https://scrapeulous.com/howto/", + "date": "06.02.2019 - ", + "rank": 11 + } + ] + }, + "2": { + "time": "Thu, 28 Feb 2019 14:22:30 GMT", + "num_results": "Seite 2 von ungefähr 21.800.000 Ergebnissen (0,42 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://www.maxresultsseo.com/search-engine-scraper", + "title": "Google Scraper - Scrape unlimited results from Google + Binghttps://www.maxresultsseo.com/search-engine-scraperIm CacheDiese Seite übersetzen", + "snippet": "Google Scraper is a desktop software tool that allows you to scrape results from search engines such as Google and Bing. It will also allow you to check Moz DA ...", + "visible_link": "https://www.maxresultsseo.com/search-engine-scraper", + "date": "", + "rank": 12 + }, + { + "link": "https://searchnewscentral.com/blog/2011/09/28/how-to-scrape-search-engines-without-pissing-them-off/", + "title": "How to: Scrape search engines without pissing them off | Search News ...https://searchnewscentral.com/.../how-to-scrape-search-engines-w...Im CacheDiese Seite übersetzen", + "snippet": "28.09.2011 - You can learn a lot about a search engine by scraping its results. It's the only easy way you can get an hourly or daily record of exactly what ...", + "visible_link": "https://searchnewscentral.com/.../how-to-scrape-search-engines-w...", + "date": "28.09.2011 - ", + "rank": 13 + }, + { + "link": "https://www.quora.com/What-SEO-agencies-or-services-use-for-scraping-Search-Engines", + "title": "What SEO agencies or services use for scraping Search Engines? - Quorahttps://www.quora.com/What-SEO-agencies-or-services-use-for-s...Diese Seite übersetzen", + "snippet": "13.12.2016 - To detect scraping, search engines need to see patterns. So, if you can randomize a few things, you can scrape. Most companies I know: ...", + "visible_link": "https://www.quora.com/What-SEO-agencies-or-services-use-for-s...", + "date": "13.12.2016 - ", + "rank": 14 + }, + { + "link": "https://scrapemasters.com/services/search-engines-scraping/", + "title": "Google web scraping service. Scrape Google search results. Google ...https://scrapemasters.com/services/search-engines-scraping/Im CacheDiese Seite übersetzen", + "snippet": "We turn any search engines (Google, Bing, Yahoo) results page (SERP) into structured data and deliver results through API or any other way convenient for you.", + "visible_link": "https://scrapemasters.com/services/search-engines-scraping/", + "date": "", + "rank": 15 + }, + { + "link": "https://www.seroundtable.com/google-apis-reduce-scraping-25978.html", + "title": "Google Believes Providing APIs Won't Reduce Search Results Scrapinghttps://www.seroundtable.com/google-apis-reduce-scraping-2597...Im CacheDiese Seite übersetzen", + "snippet": "29.06.2018 - Filed Under Google Search Engine Optimization ... if Google provided an API for this tool, it would reduce scraping of the Google search results.", + "visible_link": "https://www.seroundtable.com/google-apis-reduce-scraping-2597...", + "date": "29.06.2018 - ", + "rank": 16 + }, + { + "link": "https://www.youtube.com/watch?v=wuHvwFHoZ4U", + "title": "How to use Search Engine Scraper - YouTubehttps://www.youtube.com/watch?v=wuHvwFHoZ4UDiese Seite übersetzen", + "snippet": "Get the software from: http://www.bottopia.com/software/search-engine-scraper/ ... Web Scraping a Search ...", + "visible_link": "https://www.youtube.com/watch?v=wuHvwFHoZ4U", + "date": "", + "rank": 17 + }, + { + "link": "https://www.youtube.com/watch?v=BcQRIr3noOI", + "title": "How to Scrape Google Search Results Quickly, Easily and for Free ...https://www.youtube.com/watch?v=BcQRIr3noOIÄhnliche SeitenDiese Seite übersetzen", + "snippet": "How to Scrape Google Search Results Quickly, Easily and for Free ... *UPDATE 6/30/2015 - Set your search ...", + "visible_link": "https://www.youtube.com/watch?v=BcQRIr3noOI", + "date": "", + "rank": 18 + }, + { + "link": "https://forum.gsa-online.de/discussion/20784/scrape-box-google-scraping-settings-next-best-engines-after-google-to-scrape-own-list-or-urls", + "title": "Scrape Box Google scraping settings + Next Best engines after ...https://forum.gsa-online.de › ... › Need HelpIm CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "1) I am using Scrapebox with 20 Semi-dedicated proxies. ... Yes, scrape Bing or another search engine - you will be able to rank in Google if ...", + "visible_link": "https://forum.gsa-online.de › ... › Need Help", + "date": "", + "rank": 19 + }, + { + "link": "https://www.scrapehero.com/a-beginners-guide-to-web-scraping-part-1-the-basics/", + "title": "What is web scraping - Part 1 - Beginner's guide - ScrapeHerohttps://www.scrapehero.com/a-beginners-guide-to-web-scraping-...Im CacheDiese Seite übersetzen", + "snippet": "29.01.2018 - For example, SERP monitoring services scrape search engine results periodically to show you how your search rankings have changed over ...", + "visible_link": "https://www.scrapehero.com/a-beginners-guide-to-web-scraping-...", + "date": "29.01.2018 - ", + "rank": 20 + }, + { + "link": "https://code.i-harness.com/de/q/4207e0", + "title": "search-engine - Was ist der Unterschied zwischen Web-Crawling und ...https://code.i-harness.com/de/q/4207e0Im Cache", + "snippet": "Web Scraping , um eine minimale Definition zu verwenden, ist der Prozess der Verarbeitung eines Webdokuments und das Extrahieren von Informationen ...", + "visible_link": "https://code.i-harness.com/de/q/4207e0", + "date": "", + "rank": 21 + } + ] + } + }, + "learn js": { + "1": { + "time": "Thu, 28 Feb 2019 14:22:34 GMT", + "num_results": "Ungefähr 646.000.000 Ergebnisse (0,33 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://www.learn-js.org/", + "title": "Learn JavaScript - Free Interactive JavaScript Tutorialhttps://www.learn-js.org/Im CacheDiese Seite übersetzen", + "snippet": "Learn-JS.org is a free interactive JavaScript tutorial for people who want to learn JavaScript, fast.", + "visible_link": "https://www.learn-js.org/", + "date": "", + "rank": 1 + }, + { + "link": "https://learnjavascript.online/", + "title": "Learn JavaScripthttps://learnjavascript.online/Im CacheDiese Seite übersetzen", + "snippet": "Learn JavaScript Online: The easiest way to learn & practice modern JavaScript.", + "visible_link": "https://learnjavascript.online/", + "date": "", + "rank": 2 + }, + { + "link": "https://www.w3schools.com/js/", + "title": "JavaScript Tutorial - W3Schoolshttps://www.w3schools.com/js/Im CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "JavaScript is the programming language of HTML and the Web. JavaScript is easy to learn. This tutorial will teach you JavaScript from basic to advanced.", + "visible_link": "https://www.w3schools.com/js/", + "date": "", + "rank": 3 + }, + { + "link": "https://www.codecademy.com/learn/introduction-to-javascript", + "title": "JavaScript Tutorial: Learn JavaScript For Free | Codecademyhttps://www.codecademy.com/learn/introduction-to-javascriptIm CacheDiese Seite übersetzen", + "snippet": "Learn JavaScript and Javascript arrays to build interactive websites and pages that adapt to every device. Add dynamic behavior, store information, and handle ...", + "visible_link": "https://www.codecademy.com/learn/introduction-to-javascript", + "date": "", + "rank": 4 + }, + { + "link": "https://developer.mozilla.org/en-US/docs/Learn/JavaScript", + "title": "JavaScript - Learn web development | MDNhttps://developer.mozilla.org/en-US/docs/Learn/JavaScriptIm CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "19.02.2019 - JavaScript is arguably more difficult to learn than related technologies such as HTML and CSS. Before attempting to learn JavaScript, you are ...", + "visible_link": "https://developer.mozilla.org/en-US/docs/Learn/JavaScript", + "date": "19.02.2019 - ", + "rank": 5 + }, + { + "link": "https://www.thebalancecareers.com/learn-javascript-online-2071405", + "title": "Places to Learn JavaScript Online - The Balance Careershttps://www.thebalancecareers.com › ... › EducationIm CacheDiese Seite übersetzen", + "snippet": "24.01.2019 - Want to dip your toes into the world of JavaScript? To learn JavaScript, check out the free and paid options for training and certification online.", + "visible_link": "https://www.thebalancecareers.com › ... › Education", + "date": "24.01.2019 - ", + "rank": 6 + }, + { + "link": "https://javascript.info/", + "title": "The Modern Javascript Tutorialhttps://javascript.info/Im CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "Here we learn JavaScript, starting from scratch and go on to advanced ... Learning how to manage the browser page: add elements, manipulate their size and ...", + "visible_link": "https://javascript.info/", + "date": "", + "rank": 7 + }, + { + "link": "https://java.com/de/download/help/enable_browser.xml", + "title": "Wie aktiviere ich Java in meinem Webbrowser?https://java.com/de/download/help/enable_browser.xmlJavaScript im Browser aktivieren, damit Anzeigen ... - Google Supporthttps://support.google.com/adsense/answer/12654?hl=deJavaScript: Aufgaben und Anwendungsbereiche - molilyhttps://molily.de/js/aufgaben.html", + "snippet": "", + "visible_link": "https://java.com/de/download/help/enable_browser.xmlhttps://support.google.com/adsense/answer/12654?hl=dehttps://molily.de/js/aufgaben.html", + "date": "", + "rank": 8 + }, + { + "link": "https://java.com/de/download/help/enable_browser.xml", + "title": "Wie aktiviere ich Java in meinem Webbrowser?https://java.com/de/download/help/enable_browser.xml", + "snippet": "", + "visible_link": "https://java.com/de/download/help/enable_browser.xml", + "date": "", + "rank": 9 + }, + { + "link": "https://support.google.com/adsense/answer/12654?hl=de", + "title": "JavaScript im Browser aktivieren, damit Anzeigen ... - Google Supporthttps://support.google.com/adsense/answer/12654?hl=de", + "snippet": "", + "visible_link": "https://support.google.com/adsense/answer/12654?hl=de", + "date": "", + "rank": 10 + }, + { + "link": "https://molily.de/js/aufgaben.html", + "title": "JavaScript: Aufgaben und Anwendungsbereiche - molilyhttps://molily.de/js/aufgaben.html", + "snippet": "", + "visible_link": "https://molily.de/js/aufgaben.html", + "date": "", + "rank": 11 + }, + { + "link": "https://learnjavascript.today/", + "title": "Learn JavaScript from scratchhttps://learnjavascript.today/Im CacheDiese Seite übersetzen", + "snippet": "Build anything you want with JavaScript. Have you tried learning JavaScript for a while now, but feel that you're not making progress?", + "visible_link": "https://learnjavascript.today/", + "date": "", + "rank": 12 + } + ] + }, + "2": { + "time": "Thu, 28 Feb 2019 14:22:36 GMT", + "num_results": "Seite 2 von ungefähr 646.000.000 Ergebnissen (0,27 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://www.youtube.com/watch?v=PkZNo7MFNFg", + "title": "Learn JavaScript - Full Course for Beginners - YouTubehttps://www.youtube.com/watch?v=PkZNo7MFNFgDiese Seite übersetzen", + "snippet": "This complete 134-part JavaScript tutorial for beginners will teach you everything you need to know to get ...", + "visible_link": "https://www.youtube.com/watch?v=PkZNo7MFNFg", + "date": "", + "rank": 13 + }, + { + "link": "https://medium.com/coderbyte/50-resources-to-help-you-start-learning-javascript-in-2017-4c70b222a3b9", + "title": "50 resources to help you start learning JavaScript in 2017 - Mediumhttps://medium.com/.../50-resources-to-help-you-start-learning-ja...Im CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "04.01.2017 - Over the last few years JavaScript has been surging in popularity as the language itself is growing, a majority of coding bootcamps teach the ...", + "visible_link": "https://medium.com/.../50-resources-to-help-you-start-learning-ja...", + "date": "04.01.2017 - ", + "rank": 14 + }, + { + "link": "https://medium.freecodecamp.org/want-to-learn-javascript-heres-a-free-24-part-course-to-get-you-started-e7777baf86fb", + "title": "Want to learn JavaScript? Here's a free 24-part course to get you started.https://medium.freecodecamp.org/want-to-learn-javascript-heres-...Im CacheDiese Seite übersetzen", + "snippet": "19.04.2018 - The first concept you'll need to learn is variables, which are for storing values. In modern JavaScript there are two keywords for doing that: let ...", + "visible_link": "https://medium.freecodecamp.org/want-to-learn-javascript-heres-...", + "date": "19.04.2018 - ", + "rank": 15 + }, + { + "link": "http://javascriptissexy.com/how-to-learn-javascript-properly/", + "title": "How to Learn JavaScript Properly | JavaScript Is Sexyjavascriptissexy.com/how-to-learn-javascript-properly/Ähnliche Seiten", + "snippet": "You do want to learn JavaScript. I presume you are here for that reason, and you have made a wise decision. For if you want to develop modern websites and ...", + "visible_link": "javascriptissexy.com/how-to-learn-javascript-properly/", + "date": "", + "rank": 16 + }, + { + "link": "https://www.sololearn.com/Course/JavaScript/", + "title": "JavaScript Tutorial | SoloLearn: Learn to code for FREE!https://www.sololearn.com/Course/JavaScript/Im CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "Our tutorial will teach you the fundamentals of JavaScript programming. You can learn how to make your website more interactive, change your website content, ...", + "visible_link": "https://www.sololearn.com/Course/JavaScript/", + "date": "", + "rank": 17 + }, + { + "link": "https://www.javascript.com/try", + "title": "Start learning JavaScript with our free real time tutorialhttps://www.javascript.com/tryIm CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "Start learning JavaScript with our interactive simulator for free. Our easy to follow JavaScript tutorials for beginners will have you coding the basics in no time.", + "visible_link": "https://www.javascript.com/try", + "date": "", + "rank": 18 + }, + { + "link": "https://learnxinyminutes.com/docs/javascript/", + "title": "Learn javascript in Y Minuteshttps://learnxinyminutes.com/docs/javascript/Im CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "JavaScript was created by Netscape's Brendan Eich in 1995. It was originally intended as a simpler scripting language for websites, complementing the use of ...", + "visible_link": "https://learnxinyminutes.com/docs/javascript/", + "date": "", + "rank": 19 + }, + { + "link": "https://www.pluralsight.com/paths/javascript", + "title": "JavaScript | Pluralsighthttps://www.pluralsight.com/paths/javascriptIm CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "This learning path includes JavaScript tutorials for both the new programmer looking to get started and the advanced web developer wanting to solidify and ...", + "visible_link": "https://www.pluralsight.com/paths/javascript", + "date": "", + "rank": 20 + }, + { + "link": "https://www.edx.org/learn/javascript", + "title": "Learn Javascript from Harvard, Microsoft, and more | edXhttps://www.edx.org/learn/javascriptIm CacheDiese Seite übersetzen", + "snippet": "Free Javascript courses online. Learn Javascript programming and advance your career with free computer science courses from top institutions. Join now.", + "visible_link": "https://www.edx.org/learn/javascript", + "date": "", + "rank": 21 + }, + { + "link": "http://www.bestprogramminglanguagefor.me/why-learn-javascript", + "title": "Why Learn JavaScript - Best Programming Languagewww.bestprogramminglanguagefor.me/why-learn-javascriptIm CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "JavaScript has become an essential web technology along with HTML and CSS, as most browsers implement JavaScript. Thus, You must learn JavaScript if you ...", + "visible_link": "www.bestprogramminglanguagefor.me/why-learn-javascript", + "date": "", + "rank": 22 + } + ] + } + } +} \ No newline at end of file diff --git a/examples/results/bing.json b/examples/results/bing.json new file mode 100644 index 0000000..f5987c7 --- /dev/null +++ b/examples/results/bing.json @@ -0,0 +1,6903 @@ +{ + "New York": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:47 GMT", + "no_results": false, + "effective_query": "", + "num_results": "514.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/New_York_City", + "title": "New York City – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/New_York_City", + "rank": 1 + }, + { + "link": "https://www.newyork.de/", + "title": "New York Informationsportal - NewYork.de", + "snippet": "Informationen zu New York City. Mit News, Karten, Fotos, Reiseplanung, Sehenswürdigkeiten, Geschichte, Veranstaltungen, Shopping- und Ausgehtipps.", + "visible_link": "https://www.newyork.de", + "rank": 2 + }, + { + "link": "https://www.focus.de/orte/new-york/", + "title": "Das sollten Sie unbedingt zu New York wissen - focus.de", + "snippet": "New York New York, ist eine Weltstadt an der Ostküste der Vereinigten Staaten. Mit mehr als acht Millionen Einwohnern gehört New York zu den bevölkerungsreichsten Städten der Vereinigten Staaten.", + "visible_link": "https://www.focus.de/orte/new-york", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/New_York_(Bundesstaat)", + "title": "New York (Bundesstaat) – Wikipedia", + "snippet": "Geographie. New York grenzt im Süden an Pennsylvania und New Jersey, im Osten an Massachusetts, Connecticut und Vermont, im Norden und Nordwesten an die …", + "visible_link": "https://de.wikipedia.org/wiki/New_York_(Bundesstaat)", + "rank": 4 + }, + { + "link": "https://www.urlaubsguru.de/tag/new-york/", + "title": "New York Urlaub - die besten Angebote | Urlaubsguru.de", + "snippet": "New York Kracher 5 Tage im top bewerteten Hotel mit Frühstück und Direktflügen . Je preiswerter der Deal, desto gefüllter der Geldbeutel, das ist das Motto dieser Reise.", + "visible_link": "https://www.urlaubsguru.de/tag/new-york", + "rank": 5 + }, + { + "link": "https://www.lastminute.de/staedtereisen/new-york.html", + "title": "Städtereisen New York - lastminute.de", + "snippet": "Städtereisen New York. Keine Frage: Eine Reise in die Stadt der absoluten Superlative sollte jeder zumindest ein Mal in seinem Leben unternommen haben. lastminute.de bietet Ihnen die einzigartige Möglichkeit für unvergessliche Städtereisen nach New York.", + "visible_link": "https://www.lastminute.de/staedtereisen/new-york.html", + "rank": 6 + } + ] + } + }, + "San Diego": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:49 GMT", + "no_results": false, + "effective_query": "", + "num_results": "149.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/San_Diego", + "title": "San Diego – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/San_Diego", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Restaurant_Review-g187323-d1946542-Reviews-Steakhouse_San_Diego-Berlin.html", + "title": "Steakhouse San Diego, Berlin - Karl-Marx-Allee 141 ...", + "snippet": "Steakhouse San Diego, Berlin: 122 Bewertungen - bei TripAdvisor auf Platz 3.952 von 7.979 von 7.979 Berlin Restaurants; mit 3,5/5 von Reisenden bewertet.", + "visible_link": "www.tripadvisor.de › … › Berlin › Restaurants Berlin - Bewertungen", + "rank": 2 + }, + { + "link": "https://flug.idealo.de/flugroute/Berlin-Tegel-TXL/San-Diego-SAN/", + "title": "Flug Berlin-Tegel - San Diego ab 294 € | billige Flüge ...", + "snippet": "Flug von Berlin Tegel (TXL) nach San Diego (SAN), billige Flüge und Billigflug-Angebote auf der Strecke Berlin Tegel (TXL) San Diego (SAN) ab 294 € (Preis vom …", + "visible_link": "flug.idealo.de › … › Flüge nach USA › Flüge nach San Diego", + "rank": 3 + }, + { + "link": "https://www.berlin.de/restaurants/adressen/steakhaus/steakhaus-san-diego-4f1441e4b4fc475f0ba8a400.html", + "title": "Steakhaus San Diego :: Steakhaus – Berlin.de", + "snippet": "Steakhaus: Steakhaus San Diego, Karl-Marx-Allee, Berlin–Friedrichshain – Information zu Kontakt, Öffnungszeiten, Anfahrt und mehr.", + "visible_link": "https://www.berlin.de/restaurants/adressen/steakhaus/steakhaus-san...", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.de/Restaurant_Review-g187323-d2299596-Reviews-Steakhouse_San_Diego-Berlin.html", + "title": "Steakhouse San Diego, Berlin - tripadvisor.de", + "snippet": "Steakhouse San Diego, Berlin: 57 Bewertungen - bei TripAdvisor auf Platz 4.550 von 7.973 von 7.973 Berlin Restaurants; mit 3,5/5 von Reisenden bewertet.", + "visible_link": "www.tripadvisor.de › … › Berlin › Restaurants Berlin - Bewertungen", + "rank": 5 + }, + { + "link": "https://www.speisekarte.de/berlin/restaurant/san_diego_steak_house", + "title": "San Diego Steak - House in Berlin – speisekarte.de", + "snippet": "Die wichtigsten Infos zu San Diego Steak - House in Berlin präsentiert von speisekarte.de - Adresse Kontakt Karte", + "visible_link": "https://www.speisekarte.de/berlin/restaurant/san_diego_steak_house", + "rank": 6 + }, + { + "link": "https://www.speisekarte.de/berlin/restaurant/san_diego_steak_house/speisekarte", + "title": "Speisekarte von San Diego Steak - House in Berlin mit Preisen", + "snippet": "Bearbeitungsstand der Speisekarte von San Diego Steak - House ist der 25.07.2012. Alle Abbildungen Serviervorschläge. Es gilt die jeweils aktuelle Speisekarte im Restaurant.", + "visible_link": "https://www.speisekarte.de/berlin/restaurant/san_diego_steak_house/...", + "rank": 7 + } + ] + } + }, + "Columbus": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:53 GMT", + "no_results": false, + "effective_query": "", + "num_results": "19.700.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Christoph_Kolumbus", + "title": "Christoph Kolumbus – Wikipedia", + "snippet": "Christoph Columbus, Christopher Columbus und Cristóbal Colón sind Weiterleitungen auf diesen Artikel. Weitere Bedeutungen aller Schreibweisen sind …", + "visible_link": "https://de.wikipedia.org/wiki/Christoph_Kolumbus", + "rank": 1 + }, + { + "link": "https://www.aohostels.com/de/berlin/berlin-kolumbus/", + "title": "a&o Hostel Berlin-Kolumbus: Günstiges Hotel in Berlin ab 12€", + "snippet": "Beschreibung des Hostels a&o Berlin Kolumbus Ein Ausflug nach Berlin muss nicht teuer sein! Diesem Motto ist auch unser Hostel Berlin Kolumbus im Nordosten der deutschen Hauptstadt verpflichtet.", + "visible_link": "https://www.aohostels.com/de/berlin/berlin-kolumbus", + "rank": 2 + }, + { + "link": "https://de.wikipedia.org/wiki/Columbus", + "title": "Columbus – Wikipedia", + "snippet": "Columbus oder Kolumbus (aus lat. columbus, wörtlich „[der] Tauberich/Täuberich“, wohl zu columba „[die] Taube“) ist der Familienname folgender Personen:", + "visible_link": "https://de.wikipedia.org/wiki/Columbus", + "rank": 3 + }, + { + "link": "https://www.dslweb.de/tele-columbus-tv.php", + "title": "Tele Columbus TV: Angebote für Kabelfernsehen von Tele ...", + "snippet": "In vielen Gebieten Thüringens, Brandenburgs, Berlins, Sachsens und Sachsen-Anhalts sowie in München, Frankfurt und Nürnberg ist die Tele Columbus Gruppe mit ihren Kabel TV Angeboten vetreten.", + "visible_link": "www.dslweb.de › TV › TV Anbieter", + "rank": 4 + }, + { + "link": "https://www.booking.com/hotel/de/kolumbus.de.html", + "title": "Hotel a&o Berlin Kolumbus (Deutschland Berlin) - Booking.com", + "snippet": "Hotel a&o Berlin Kolumbus Diese Bewertung spiegelt wider, wie die Unterkunft im Hinblick auf die branchenüblichen Standards bezüglich des Preises, der Ausstattung und …", + "visible_link": "https://www.booking.com/hotel/de/kolumbus.de.html", + "rank": 5 + }, + { + "link": "https://flug.idealo.de/flugroute/Berlin-BER/Columbus-CMH/", + "title": "Flug Berlin - Columbus ab 388 € | billige Flüge buchen bei ...", + "snippet": "Flug von Berlin (BER) nach Columbus (CMH), billige Flüge und Billigflug-Angebote auf der Strecke Berlin (BER) Columbus (CMH) ab 388 € (Preis vom 23.01.2019). Günstige Flug-Tickets online buchen.", + "visible_link": "flug.idealo.de › … › Flüge nach USA › Flüge nach Columbus", + "rank": 6 + }, + { + "link": "http://www.columbiahalle.berlin/de/", + "title": "Columbiahalle - Veranstaltungen - deutsch", + "snippet": "Mit Eins Zwo, „Die Pfütze des Eisbergs“ und seinen Auftritten im „Neo Magazin Royale“ hat er Rap-Geschichte geschrieben. Nun kehrt Dendemann nach längerer …", + "visible_link": "www.columbiahalle.berlin", + "rank": 7 + }, + { + "link": "https://pizza.de/lieferservice/berlin/restaurant-columbus-croque2/7591/", + "title": "Columbus Croque Lieferservice Manteuffelstraße | pizza.de", + "snippet": "Bestell dein Essen bei Columbus Croque, Manteuffelstraße 8 in Berlin! Speisekarte studieren und Burger-Mittwoch vom Bringdienst liefern lassen.", + "visible_link": "https://pizza.de/lieferservice/berlin/restaurant-columbus-croque2/7591", + "rank": 8 + }, + { + "link": "https://columbia-theater.de/", + "title": "Columbia Theater Berlin | Columbiadamm 9-11", + "snippet": "Mit „Got Nexxt Live“ feiert der meistgehörte Basketball-Podcast Deutschlands von Five-Chefredakteur und DAZN-Experte André Voigt seine Live-Premiere am 24.02.19 in Berlin.", + "visible_link": "https://columbia-theater.de", + "rank": 9 + }, + { + "link": "https://www.kayak.de/fl%C3%BCge/Port-Columbus-CMH/Berlin-BER", + "title": "Billigflüge von Columbus nach Berlin ab 722 € | (CMH - BER ...", + "snippet": "Fliegen Sie von Columbus nach Berlin mit Mehrere Fluglinien... Suchen und finden Sie Flug-Angebote nach Berlin.", + "visible_link": "www.kayak.de › Flüge › Weltweit › Nordamerika › USA", + "rank": 10 + } + ] + } + }, + "Denver": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:55 GMT", + "no_results": false, + "effective_query": "", + "num_results": "17.500.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Denver", + "title": "Denver – Wikipedia", + "snippet": "Denver [ˈdɛnvɚ] ist die Hauptstadt und bevölkerungsreichste Stadt des US-Bundesstaates Colorado, gelegen am östlichen Fuß der Rocky Mountains.", + "visible_link": "https://de.wikipedia.org/wiki/Denver", + "rank": 1 + }, + { + "link": "https://denver-electronics.com/", + "title": "DENVER ELECTRONICS A/S", + "snippet": "Whether it is work, play, entertainment, staying fit, staying safe or staying in touch, Denver Electronics® can meet the need.", + "visible_link": "https://denver-electronics.com", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g33388-Denver_Colorado-Vacations.html", + "title": "Denver, CO: Tourismus in Denver - TripAdvisor", + "snippet": "Denver ist eine aufregende und junge Stadt mit 300 Sonnentagen im Jahr und einer sehr lebendigen Kunst- und Kulturszene. Die „Mile High City“ liegt genau eine Meile (1.609 m) über dem Meeresspiegel am Fuße der atemberaubenden Rocky Mountains.", + "visible_link": "www.tripadvisor.de › USA › Colorado (CO)", + "rank": 3 + }, + { + "link": "https://de.wikivoyage.org/wiki/Denver", + "title": "Denver – Reiseführer auf Wikivoyage", + "snippet": "Denver ist die Hauptstadt des US-Bundesstaates Colorado und gleichzeitig die größte Stadt in Colorado. Denver ist touristisch besonders interessant, weil es einerseits alle Vorteile einer Großstadt mit liberalem und weltoffenem Flair bietet.", + "visible_link": "https://de.wikivoyage.org/wiki/Denver", + "rank": 4 + }, + { + "link": "https://www.denver.org/international/german/", + "title": "Denver Colorado Tourist & Vacation Information …", + "snippet": "MUSEEN. Denver ist die Heimat zahlreicher international renommierter Museen wie dem Denver Art Museum, das Sammlungen indianischer Kunst ausstellt, dem Museum of Contemporary Art Denver, das sich auf zeitgenössische Kunst konzentriert, dem Clyfford Still Museum, das die Geschichte des gleichnamigen Abstrakt-Expressionisten Clyfford Still zeigt ...", + "visible_link": "https://www.denver.org/international/german", + "rank": 5 + }, + { + "link": "https://www.real.de/marken/denver-electronics/", + "title": "Denver Electronics im Online Shop von real", + "snippet": "Denver Electronics Produkte im Angebot. Jetzt im Online Shop von real günstig kaufen und PAYBACK Punkte sammeln.", + "visible_link": "https://www.real.de/marken/denver-electronics", + "rank": 6 + }, + { + "link": "http://www.us-infos.de/co-denver.html", + "title": "US-INFOS.DE: Tourtip Denver - Colorado", + "snippet": "Größere Kartenansicht: Dort, wo die von Osten her kommende, schier endlose Ebene der Great Plains, doch noch ihr Ende erreicht, liegt das 1852 gegründete Denver, noch in der Ebene, aber die nahen Rockies spürbar vor der Haustüre.", + "visible_link": "www.us-infos.de/co-denver.html", + "rank": 7 + }, + { + "link": "https://www.hrs.de/hotel/usa/colorado/denver/", + "title": "Hotels in Denver – Erleben Sie Colorados Flair", + "snippet": "Günstig gelegene Hotels in Denver – erforschen Sie Colorado und profitieren Sie von Geprüften Bewertungen HRS Kulanzservice 24h Support", + "visible_link": "https://www.hrs.de/hotel/usa/colorado/denver", + "rank": 8 + }, + { + "link": "https://en.wikipedia.org/wiki/Denver", + "title": "Denver - Wikipedia", + "snippet": "Denver (/ ˈ d ɛ n v ər /), officially the City and County of Denver, is the capital and most populous municipality of the U.S. state of Colorado. Denver is located in the South Platte River Valley on the western edge of the High Plains just east of the Front Range of the Rocky Mountains.", + "visible_link": "https://en.wikipedia.org/wiki/Denver", + "rank": 9 + }, + { + "link": "https://de.wikipedia.org/wiki/Denver_International_Airport", + "title": "Denver International Airport – Wikipedia", + "snippet": "Der Denver International Airport (IATA: DEN, ICAO KDEN, kurz DIA) ist ein internationaler Verkehrsflughafen knapp 40 Kilometer nordöstlich der Innenstadt von Denver, Colorado, in den USA.", + "visible_link": "https://de.wikipedia.org/wiki/Denver_International_Airport", + "rank": 10 + } + ] + } + }, + "Portland": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:57 GMT", + "no_results": false, + "effective_query": "", + "num_results": "17.200.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Portland_(Oregon)", + "title": "Portland (Oregon) – Wikipedia", + "snippet": "Portland ist eine Stadt im Nordwesten der Vereinigten Staaten im Bundesstaat Oregon. Portland ist die größte Stadt und das wirtschaftliche Zentrum des Bundesstaates.", + "visible_link": "https://de.wikipedia.org/wiki/Portland_(Oregon)", + "rank": 1 + }, + { + "link": "https://de.wikivoyage.org/wiki/Portland_(Maine)", + "title": "Portland (Maine) – Reiseführer auf Wikivoyage", + "snippet": "Sehenswürdigkeiten Museen . Portland Museum of Art, 7 Congress St. Das größte Kunstmuseum im Bundesstaat Maine ist auf Werke regionaler Künstler spezialisiert, zeigt aber auch Arbeiten französischer, v.a. impressionistischer Künstler.Wikipedia", + "visible_link": "https://de.wikivoyage.org/wiki/Portland_(Maine)", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g52024-Portland_Oregon-Vacations.html", + "title": "Portland, OR: Tourismus in Portland - TripAdvisor", + "snippet": "Auf TripAdvisor finden Sie alles für Portland, Oregon: 312.649 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › USA › Oregon (OR)", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/Portland_(Maine)", + "title": "Portland (Maine) – Wikipedia", + "snippet": "Portland ist eine City im Cumberland County im US-Bundesstaat Maine. Portland hatte bei der US-Volkszählung 2010 eine Einwohnerzahl von 66.194 auf einer Fläche von 136,2 km².", + "visible_link": "https://de.wikipedia.org/wiki/Portland_(Maine)", + "rank": 4 + }, + { + "link": "https://de.wikivoyage.org/wiki/Portland_(Oregon)", + "title": "Portland (Oregon) – Reiseführer auf Wikivoyage", + "snippet": "Portland hat einen landesweiten Ruf als eine der (links-)liberalsten, grünsten, hipsten und queersten Städte der USA. Viele Bewohner nehmen für sich in Anspruch, weird – „anders“ oder „schräg“ – zu sein.", + "visible_link": "https://de.wikivoyage.org/wiki/Portland_(Oregon)", + "rank": 5 + }, + { + "link": "https://aida.de/hafen/isle-of-portland", + "title": "Kreuzfahrt Isle of Portland - AIDA Hafen Isle of Portland", + "snippet": "Im Ärmelkanal vor der englischen Südküste liegt der Kalksteinfelsen Isle of Portland. Er ist mit dem Festland über eine schmale, natürliche Landbrücke verbunden und gehört zur Grafschaft Dorset.", + "visible_link": "https://aida.de/hafen/isle-of-portland", + "rank": 6 + }, + { + "link": "https://www.visittheusa.de/destination/portland-maine", + "title": "Portland | Visit The USA", + "snippet": "Portland hat sich im Laufe seiner 400-jährigen Geschichte von einem kleinen Kolonialhafen zum größten Ballungszentrum Maines und einer der angesagtesten Städte an der amerikanischen Ostküste entwickelt.", + "visible_link": "https://www.visittheusa.de/destination/portland-maine", + "rank": 7 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/portland/US0OR0272.html", + "title": "Wetter Portland | wetter.com", + "snippet": "In Portland sind am Tag anhaltende Schauer zu erwarten und die Temperaturen liegen zwischen 3 und 7°C. In der Nacht sind anhaltende Regen-Schauer zu erwarten bei Tiefsttemperaturen von 1°C.", + "visible_link": "www.wetter.com › Nordamerika › USA", + "rank": 8 + } + ] + } + }, + "Long Beach": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:00 GMT", + "no_results": false, + "effective_query": "", + "num_results": "184.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Long_Beach_(Kalifornien)", + "title": "Long Beach (Kalifornien) – Wikipedia", + "snippet": "Long Beach (englisch für „Langer Strand“) ist eine Stadt im Los Angeles County im US-Bundesstaat Kalifornien mit 470.130 Einwohnern (Stand 2016). Das Stadtgebiet hat eine Größe von 170,6 km².", + "visible_link": "https://de.wikipedia.org/wiki/Long_Beach_(Kalifornien)", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g32648-Activities-Long_Beach_California.html", + "title": "Beste Attraktionen in Long Beach, Kalifornien - tripadvisor.de", + "snippet": "17.02.2019 Top 10 Long Beach Sehenswürdigkeiten: Hier finden Sie 13.549 Bewertungen und Fotos von Reisenden über 56 Sehenswürdigkeiten, Touren und Ausflüge - alle Long Beach …", + "visible_link": "www.tripadvisor.de › USA › Kalifornien › Long Beach", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g32648-Long_Beach_California-Vacations.html", + "title": "Long Beach, Kalifornien: Tourismus in Long Beach - TripAdvisor", + "snippet": "Auf TripAdvisor finden Sie alles für Long Beach, Kalifornien: 73.867 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › USA › Kalifornien", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/Long_Beach", + "title": "Long Beach – Wikipedia", + "snippet": "Long Beach ist der Name folgender Orte in den Vereinigten Staaten: Long Beach (Indiana) Long Beach (Kalifornien) Long Beach (Maine) Long Beach (Maryland)", + "visible_link": "https://de.wikipedia.org/wiki/Long_Beach", + "rank": 4 + }, + { + "link": "https://www.holidaycheck.de/hi/long-beach-resort/49081940-092f-3828-b954-4ad387fe4298", + "title": "Long Beach Resort (Avsallar) • HolidayCheck (Türkische ...", + "snippet": "Bewertungen, Hotelbilder & TOP Angebote: Long Beach Resort (86% Weiterempfehlung) 100€ Gutschein GRATIS Hotline Bestpreis-Garantie Preisvergleich Urlaub buchen bei HolidayCheck", + "visible_link": "www.holidaycheck.de › … › Türkei › Türkische Riviera › Avsallar", + "rank": 5 + }, + { + "link": "https://www.holidaycheck.de/hi/hurghada-long-beach-resort/68e11bd9-4f19-3f3c-84ee-03379debc641", + "title": "Hurghada Long Beach Resort (Hurghada) • HolidayCheck ...", + "snippet": "Das Hotel allgemein. Das 4-Sterne-Hotel Hilton Long Beach Resort gehörte einst zu der Hilton-Kette, ist heute aber unabhängig und hat viel in Renovierung und Umbauten investiert.", + "visible_link": "www.holidaycheck.de › … › Ägypten › Hurghada/Safaga › Hurghada", + "rank": 6 + }, + { + "link": "https://en.wikipedia.org/wiki/Long_Beach,_California", + "title": "Long Beach, California - Wikipedia", + "snippet": "Long Beach is a city on the Pacific Coast of the United States, within the Los Angeles metropolitan area of Southern California. As of 2010, its population was 462,257. It is the 39th most populous city in the United States and the 7th most populous in California.", + "visible_link": "https://en.wikipedia.org/wiki/Long_Beach,_California", + "rank": 7 + }, + { + "link": "https://www.airbnb.de/locations/los-angeles/long-beach", + "title": "Long Beach, Los Angeles Guide - Airbnb-Nachbarschaften", + "snippet": "Long Beach besteht aus mehreren Nachbarschaften und hat in Sachen Strand und Bars, Stau und Verkehr, aber auch Kunst viel zu bieten.", + "visible_link": "https://www.airbnb.de/locations/los-angeles/long-beach", + "rank": 8 + } + ] + } + }, + "Raleigh": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:02 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.500.000 Ergebnisse", + "results": [ + { + "link": "https://www.raleigh-bikes.de/", + "title": "E-Bike und Fahrrad Modelle 2019 | Raleigh Fahrräder", + "snippet": "Best of Britain - Made in Germany. Neugierig? Treten Sie ein in die Raleigh Fahrrad und E-Bike Welt 2019.", + "visible_link": "https://www.raleigh-bikes.de", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Raleigh_(North_Carolina)", + "title": "Raleigh (North Carolina) – Wikipedia", + "snippet": "Raleigh ist die Hauptstadt des US-Bundesstaates North Carolina sowie die zweitgrößte Stadt North Carolinas nach Charlotte und bildet ein Dreieck mit den Nachbarstädten Chapel Hill und Durham.", + "visible_link": "de.wikipedia.org › New York City › Miami", + "rank": 2 + }, + { + "link": "https://www.lucky-bike.de/Nach-Hersteller/Raleigh/", + "title": "Raleigh | Markenräder & Zubehör günstig kaufen | Lucky Bike", + "snippet": "Raleigh - Bei uns im Online Shop für Fahrräder und Fahrradteile finden Sie eine große Auswahl an Produkten der Marke Raleigh zu günstigen Preisen.", + "visible_link": "www.lucky-bike.de › Nach Hersteller", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/Raleigh_Cycle_Company", + "title": "Raleigh Cycle Company – Wikipedia", + "snippet": "Raleigh Cycle Company [ˈrɔːli saɪkəl ˈkʌmpəni] ist der Name eines britischen Fahrzeugherstellers, der 1887 von Frank Bowden in Nottingham gegründet wurde und zunächst Fahrräder herstellte.", + "visible_link": "https://de.wikipedia.org/wiki/Raleigh_Cycle_Company", + "rank": 4 + }, + { + "link": "https://www.otto.de/fahrraeder/?marke=raleigh", + "title": "Raleigh Online-Shop | OTTO", + "snippet": "Raleigh Online-Shop bei OTTO › Große Auswahl Ratenkauf & Kauf auf Rechnung möglich › Bestellen Sie jetzt!", + "visible_link": "https://www.otto.de/fahrraeder/?marke=raleigh", + "rank": 5 + }, + { + "link": "https://www.ebay.de/b/Raleigh-Fahrrader/177831/bn_1692123", + "title": "Raleigh Fahrräder günstig kaufen | eBay", + "snippet": "Entdecken Sie die große Vielfalt an Angeboten für Raleigh Fahrräder. Riesen-Auswahl führender Marken zu günstigen Preisen online bei eBay kaufen!", + "visible_link": "https://www.ebay.de/b/Raleigh-Fahrrader/177831/bn_1692123", + "rank": 6 + }, + { + "link": "https://www.wetteronline.de/wetter/raleigh", + "title": "Wetter Raleigh - aktuelle Wettervorhersage von WetterOnline", + "snippet": "Wetter Raleigh. Das Wetter für Raleigh im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Raleigh finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › US-Ostküste › North Carolina", + "rank": 7 + }, + { + "link": "https://www.wetter.com/wetter_aktuell/wettervorhersage/16_tagesvorhersage/vereinigte_staaten_von_amerika/raleigh/US0NC0550.html", + "title": "Wetter Raleigh: 16 Tage Trend | wetter.com", + "snippet": "Der 16 Tage Wetter Trend für Raleigh. Temperatur, Wetterzustand, Sonnenstunden und Regenwahrscheinlichkeit in der 16 Tagesübersicht.", + "visible_link": "www.wetter.com › Nordamerika › USA › North Carolina › Raleigh", + "rank": 8 + } + ] + } + }, + "Arlington": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:05 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.300.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Nationalfriedhof_Arlington", + "title": "Nationalfriedhof Arlington – Wikipedia", + "snippet": "Der Nationalfriedhof Arlington (englisch Arlington National Cemetery) ist einer der 139 Nationalfriedhöfe in den Vereinigten Staaten. Er liegt in Arlington im Bundesstaat Virginia unmittelbar südwestlich der Bundeshauptstadt Washington, D.C., von der er durch den Potomac River getrennt wird.", + "visible_link": "https://de.wikipedia.org/wiki/Nationalfriedhof_Arlington", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Arlington", + "title": "Arlington – Wikipedia", + "snippet": "Arlington steht für: Nationalfriedhof Arlington, einen US-amerikanischen Militärfriedhof in Arlington County; Arlington Hall, den Sitz ehem. U.S. Geheimdienste zwischen 1942 und 1989 (SIS, SSA, ASA) in Arlington County", + "visible_link": "https://de.wikipedia.org/wiki/Arlington", + "rank": 2 + }, + { + "link": "https://en.wikipedia.org/wiki/Arlington,_Texas", + "title": "Arlington, Texas - Wikipedia", + "snippet": "Arlington is a city in the U.S. state of Texas, located in Tarrant County. It is part of the Mid-Cities region of the Dallas–Fort Worth–Arlington metropolitan area, approximately 12 miles (19 km) east of downtown Fort Worth and 20 miles (32 km) west of downtown Dallas.", + "visible_link": "https://en.wikipedia.org/wiki/Arlington,_Texas", + "rank": 3 + }, + { + "link": "http://www.filmstarts.de/kritiken/9329.html", + "title": "Arlington Road - Film 1999 - FILMSTARTS.de", + "snippet": "Arlington Road ein Film von Mark Pellington mit Jenni Tooley, Ken Manelis. Inhaltsangabe: Oliver Lang (Tim Robbins) hat eine Frau (Joan Cusack) und drei Kinder, ein Haus und einen Minivan, also ...", + "visible_link": "www.filmstarts.de › Kino › Beste Filme › Filme Thriller", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.de/Attraction_Review-g30242-d102529-Reviews-Arlington_National_Cemetery-Arlington_Virginia.html", + "title": "Arlington National Cemetery - Bewertungen und Fotos", + "snippet": "Dieser Award ist unsere höchste Auszeichnung. Er wird einmal pro Jahr in ausgewählten Kategorien an das beliebteste Prozent der Unternehmen verliehen.", + "visible_link": "www.tripadvisor.de › USA › Virginia (VA) › Arlington", + "rank": 5 + }, + { + "link": "https://www.arlingtonindustriesgroup.com/", + "title": "Arlington Industries | Home", + "snippet": "Aerospace and automotive components manufacturer, Arlington Industries Group has achieved a high rank position on The Sunday Times’ HSBC International Track 200 league table.", + "visible_link": "https://www.arlingtonindustriesgroup.com", + "rank": 6 + }, + { + "link": "https://www.moviepilot.de/movies/arlington-road", + "title": "Arlington Road | Film 1999 | moviepilot.de", + "snippet": "01.04.1999 · Arlington Road beginnt wie eine scharfsinnige Studie über paranoide Vorstadtbewohner. Michael Faraday (ein weinerlicher Jeff Bridges, der fast den …", + "visible_link": "www.moviepilot.de › … › Fluch der Karibik › Dragon Ball Super: Broly", + "rank": 7 + }, + { + "link": "https://arlingtoncemetery.org/", + "title": "Arlington Cemetery - Covering News, How-tos …", + "snippet": "Arlington Cemetery has partnered with some of the brightest minds in professional addiction recovery. Our partners include well-known helplines such as Rehab 4 Addiction, the NHS, the Samaritans, and Rehab 4 Alcoholism.", + "visible_link": "https://arlingtoncemetery.org", + "rank": 8 + }, + { + "link": "https://en.wikipedia.org/wiki/Arlington_County,_Virginia", + "title": "Arlington County, Virginia - Wikipedia", + "snippet": "Arlington County is a county in the Commonwealth of Virginia, often referred to simply as Arlington or Arlington, Virginia. In 2016, the county's population was estimated at 230,050, making it the sixth-largest county in Virginia, or the fourth-largest city if it were incorporated as such.", + "visible_link": "https://en.wikipedia.org/wiki/Arlington_County,_Virginia", + "rank": 9 + }, + { + "link": "https://www.zeitzonen.de/usa/virginia/arlington.html", + "title": "Aktuelle Uhrzeit und Datum in Arlington | USA - Virginia ...", + "snippet": "Ok, danke. Cookies erleichtern die Bereitstellung unserer Dienste. Mit der Nutzung unserer Dienste erklären Sie sich damit einverstanden, dass wir Cookies verwenden.", + "visible_link": "https://www.zeitzonen.de/usa/virginia/arlington.html", + "rank": 10 + } + ] + } + }, + "Santa Ana": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:08 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.900.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Santa_Ana_(Kalifornien)", + "title": "Santa Ana (Kalifornien) – Wikipedia", + "snippet": "Santa Ana ist eine Stadt in Südkalifornien, etwa 70 Kilometer südöstlich von Los Angeles gelegen. Laut der letzten Volkszählung im Jahr 2010 betrug die Einwohnerzahl 324.792, davon sind mehr als drei Viertel lateinamerikanischer Herkunft.", + "visible_link": "https://de.wikipedia.org/wiki/Santa_Ana_(Kalifornien)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Antonio_L%C3%B3pez_de_Santa_Anna", + "title": "Antonio López de Santa Anna – Wikipedia", + "snippet": "Als Santa Anna im Herbst 1835 die föderale Verfassung endgültig außer Kraft setzte, brach sich auch in Texas, das Teil des mexikanischen Bundesstaates Coahuila y …", + "visible_link": "https://de.wikipedia.org/wiki/Antonio_López_de_Santa_Anna", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g33043-Santa_Ana_California-Vacations.html", + "title": "Santa Ana, Kalifornien: Tourismus in Santa Ana - TripAdvisor", + "snippet": "Auf TripAdvisor finden Sie alles für Santa Ana, Orange County: 15.123 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › USA › Kalifornien › Orange County", + "rank": 3 + }, + { + "link": "https://en.wikipedia.org/wiki/Santa_Ana,_California", + "title": "Santa Ana, California - Wikipedia", + "snippet": "Santa Ana / ˌ s æ n t ə ˈ æ n ə / (Spanish for \"Saint Anne\") is the county seat and second most populous city in Orange County, California in the Los Angeles metropolitan area.", + "visible_link": "https://en.wikipedia.org/wiki/Santa_Ana,_California", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g33043-Santa_Ana_California-Vacations.html", + "title": "Santa Ana 2019: Best of Santa Ana, CA Tourism - …", + "snippet": "Santa Ana Tourism: TripAdvisor has 15,195 reviews of Santa Ana Hotels, Attractions, and Restaurants making it your best Santa Ana resource.", + "visible_link": "www.tripadvisor.com › … › California (CA) › Orange County", + "rank": 5 + }, + { + "link": "https://www.holidaycheck.de/hi/santa-ana-villas/1565d11e-1da6-3b06-82be-f9bd80199005", + "title": "Santa Ana Villas (Playa del Ingles) • HolidayCheck (Gran ...", + "snippet": "Das Hotel allgemein. Die Santa Ana Villas liegen sehr zentral in Playa del Ingles. Der lange, feinsandige Strand und die berühmte Dünenlandschaft von Maspalomas sind in wenigen Minuten zu erreichen.", + "visible_link": "www.holidaycheck.de › … › Spanien › Gran Canaria › Playa del Ingles", + "rank": 6 + }, + { + "link": "https://www.booking.com/hotel/es/rental-santa-ana.html", + "title": "Santa Ana Apartamentos, Madrid, Spain - …", + "snippet": "Santa Ana Apartamentos This neighborhood is a great choice for travelers interested in tapas, architecture and parks – Check location Nuñez De Arce, 14, Madrid City Center, 28012 Madrid, Spain – This neighborhood is a great choice for travelers interested in tapas, architecture and parks – Check location Excellent location – show map", + "visible_link": "https://www.booking.com/hotel/es/rental-santa-ana.html", + "rank": 7 + }, + { + "link": "https://www.zeitzonen.de/usa/kalifornien/santa-ana.html", + "title": "Aktuelle Uhrzeit und Datum in Santa Ana | USA ...", + "snippet": "Ok, danke. Cookies erleichtern die Bereitstellung unserer Dienste. Mit der Nutzung unserer Dienste erklären Sie sich damit einverstanden, dass wir Cookies verwenden.", + "visible_link": "https://www.zeitzonen.de/usa/kalifornien/santa-ana.html", + "rank": 8 + } + ] + } + }, + "Stockton": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:11 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.500.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Stockton_(Kalifornien)", + "title": "Stockton (Kalifornien) – Wikipedia", + "snippet": "Stockton ist eine Stadt im San Joaquin County im US-Bundesstaat Kalifornien mit etwa 307.000 Einwohnern (Schätzung 2016, U.S. Census Bureau). Im Umland der schnell wachsenden und verkehrsgünstig gelegenen Stadt wird Wein angebaut, besonders in Lodi.", + "visible_link": "https://de.wikipedia.org/wiki/Stockton_(Kalifornien)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Stockton", + "title": "Stockton – Wikipedia", + "snippet": "Dies ist eine Begriffsklärungsseite zur Unterscheidung mehrerer mit demselben Wort bezeichneter Begriffe.", + "visible_link": "https://de.wikipedia.org/wiki/Stockton", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g33130-Activities-Stockton_California.html", + "title": "2019 DIE TOP 10 Sehenswürdigkeiten in Stockton Februar ...", + "snippet": "05.02.2019 Top 10 Stockton Sehenswürdigkeiten: Hier finden Sie 712 Bewertungen und Fotos von Reisenden über 33 Sehenswürdigkeiten, Touren und Ausflüge - alle Stockton Aktivitäten auf einen Blick.", + "visible_link": "www.tripadvisor.de › USA › Kalifornien › Stockton", + "rank": 3 + }, + { + "link": "https://en.wikipedia.org/wiki/Stockton,_California", + "title": "Stockton, California - Wikipedia", + "snippet": "Stockton is a city in and the county seat of San Joaquin County in the Central Valley of the U.S. state of California. Stockton was founded by Captain Charles Maria Weber in 1849 after he acquired Rancho Campo de los Franceses.", + "visible_link": "https://en.wikipedia.org/wiki/Stockton,_California", + "rank": 4 + }, + { + "link": "https://www.pacific.edu/", + "title": "University of the Pacific - Stockton, Sacramento …", + "snippet": "University of the Pacific is a student-focused, comprehensive educational institution that produces outstanding graduates prepared for personal and professional success.", + "visible_link": "https://www.pacific.edu", + "rank": 5 + }, + { + "link": "https://www.thefreedictionary.com/Stockton", + "title": "Stockton - definition of Stockton by The Free …", + "snippet": "A city of central California on the San Joaquin River south of Sacramento. Settled in 1848 just prior to the gold rush, it is an inland port and agricultural center.", + "visible_link": "https://www.thefreedictionary.com/Stockton", + "rank": 6 + }, + { + "link": "https://www.bggoettingen.de/team-bg/stockton/", + "title": "Stockton - BG Göttingen", + "snippet": "Diese Webseit benutzt Cookies. Informationen zur Nutzung finden Sie in unserer Datenschutzerklärung. Mit der Nutzung dieser Website erklären Sie sich mit der Verwendung von Cookies einverstanden.", + "visible_link": "https://www.bggoettingen.de/team-bg/stockton", + "rank": 7 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/stockton/US0CA1076.html", + "title": "Wetter Stockton | wetter.com", + "snippet": "In Stockton stören am Morgen nur einzelne Wolken den sonst blauen Himmel bei Temperaturen von 3°C. Im weiteren Tagesverlauf gibt es vom Nachmittag bis abends einen wolkenlosen Himmel bei Werten von 6 bis zu 13°C.", + "visible_link": "www.wetter.com › Nordamerika › USA", + "rank": 8 + } + ] + } + }, + "Henderson": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:14 GMT", + "no_results": false, + "effective_query": "", + "num_results": "8.500.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Henderson_(Nevada)", + "title": "Henderson (Nevada) – Wikipedia", + "snippet": "Henderson ist mit über 290.000 Einwohnern (Schätzung des U.S. Census Bureau 2016) die zweitgrößte Stadt im US-Bundesstaat Nevada. Sie liegt im Clark County, etwa 20 Kilometer südlich von Las Vegas und hat eine Fläche von 206,4 km 2.", + "visible_link": "https://de.wikipedia.org/wiki/Henderson_(Nevada)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Jordan_Henderson", + "title": "Jordan Henderson – Wikipedia", + "snippet": "Jordan Brian Henderson (* 17. Juni 1990 in Sunderland) ist ein englischer Fußballspieler. Seit Sommer 2011 steht der Mittelfeldspieler beim FC Liverpool unter Vertrag.", + "visible_link": "https://de.wikipedia.org/wiki/Jordan_Henderson", + "rank": 2 + }, + { + "link": "https://www.instagram.com/jhenderson/", + "title": "Jordan Henderson (@jhenderson) • Instagram …", + "snippet": "2.3m Followers, 189 Following, 469 Posts - See Instagram photos and videos from Jordan Henderson (@jhenderson)", + "visible_link": "https://www.instagram.com/jhenderson", + "rank": 3 + }, + { + "link": "https://www.janushenderson.com/ukpi", + "title": "Change your site - Janus Henderson Investors", + "snippet": "Janus Henderson Investors for private investors. For potential or existing investors. Find out more about our range of funds and investment trusts, including prices, information and tools.", + "visible_link": "https://www.janushenderson.com/ukpi", + "rank": 4 + }, + { + "link": "http://www.henderson-gin.de/", + "title": "HENDERSON London Dry Gin", + "snippet": "Entdecke dein Nachtleben neu. Mit HENDERSON – deinem Gin für coole Drinks und stilvolle Cocktail-Kreationen.", + "visible_link": "www.henderson-gin.de", + "rank": 5 + }, + { + "link": "https://en.wikipedia.org/wiki/Henderson,_Nevada", + "title": "Henderson, Nevada - Wikipedia", + "snippet": "Henderson, officially the City of Henderson, is a city in Clark County, Nevada, United States, about 16 miles (26 km) southeast of Las Vegas.", + "visible_link": "https://en.wikipedia.org/wiki/Henderson,_Nevada", + "rank": 6 + } + ] + } + }, + "St. Petersburg": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:17 GMT", + "no_results": false, + "effective_query": "", + "num_results": "48.500.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Sankt_Petersburg", + "title": "Sankt Petersburg – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/Sankt_Petersburg", + "rank": 1 + }, + { + "link": "https://flug.idealo.de/flugroute/Berlin-BER/St-Petersburg-LED/", + "title": "Flug Berlin - St. Petersburg ab 68 € | billige Flüge ...", + "snippet": "Sankt Petersburg, die zweitgrößte Stadt Russlands. Von Mai bis September ist die beste Reisezeit, um in Sankt Petersburg Urlaub zu machen. Zahlreiche Feiertage laden ein, die russische Kultur zu erleben.", + "visible_link": "flug.idealo.de › … › Flüge nach St. Petersburg", + "rank": 2 + }, + { + "link": "https://flug.idealo.de/flugroute/Berlin-Schoenefeld-SXF/St-Petersburg-LED/", + "title": "Flug Berlin-Schönefeld St. Petersburg ab 71 € | billige ...", + "snippet": "98 % der Flugreisen von Berlin Schönefeld nach St. Petersburg werden bei Aeroflot, Belavia und Rossiya Airlines gebucht.", + "visible_link": "flug.idealo.de › … › Flüge nach St. Petersburg", + "rank": 3 + }, + { + "link": "https://www.fluege.de/Katalog/Berlin-St-Petersburg/Flug-von-nach-14736", + "title": "Flug Berlin-St. Petersburg: Flüge von Berlin (BER) nach St ...", + "snippet": "Sie möchten von Berlin nach St. Petersburg fliegen und suchen einen günstigen Flug? Auf fluege.de können Sie schnell und einfach aktuelle Angebote für Flüge von rund 550 Airlines vergleichen.", + "visible_link": "www.fluege.de › … › Flüge St. Petersburg › Flughafen St. Petersburg", + "rank": 4 + }, + { + "link": "https://www.goeuro.de/reisen/berlin/sankt_petersburg", + "title": "Buche Tickets von Berlin to Sankt Petersburg mit GoEuro", + "snippet": "Alle Anbieter, alle Verbindungen von Berlin nach Sankt Petersburg mit Bahn, Bus und Flug in nur einer Suche. Buche jetzt günstige Tickets schon ab 58,59 €!", + "visible_link": "https://www.goeuro.de/reisen/berlin/sankt_petersburg", + "rank": 5 + }, + { + "link": "https://www.lufthansa.com/flug/de/flug-st_petersburg", + "title": "Flug nach St. Petersburg (LED) ab 116 € buchen ...", + "snippet": "Flug St. Petersburg - buchen Sie jetzt günstig Ihren Flug nach St. Petersburg mit Lufthansa. Jetzt billig fliegen und viele Lufthansa Vorteile genießen.", + "visible_link": "https://www.lufthansa.com/flug/de/flug-st_petersburg", + "rank": 6 + } + ] + } + }, + "Irvine": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:19 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.900.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Irvine_(Kalifornien)", + "title": "Irvine (Kalifornien) – Wikipedia", + "snippet": "Irvine ist eine Universitätsstadt im kalifornischen Orange County . Irvine wurde in den frühen 1960er Jahren von einem privaten Unternehmen, der Irvine Company, geplant und aufgebaut.", + "visible_link": "https://de.wikipedia.org/wiki/Irvine_(Kalifornien)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Irvine", + "title": "Irvine – Wikipedia", + "snippet": "Irvine ist der Name mehrerer Orte in den Vereinigten Staaten: Irvine (Kalifornien) Irvine (Kentucky) Irvine (Pennsylvania) Irvine (Wisconsin) Irvine (Wyoming)", + "visible_link": "https://de.wikipedia.org/wiki/Irvine", + "rank": 2 + }, + { + "link": "https://en.wikipedia.org/wiki/Irvine,_California", + "title": "Irvine, California - Wikipedia", + "snippet": "Irvine (/ ˈ ɜːr v aɪ n /) is a master-planned city in Orange County, California, United States in the Los Angeles metropolitan area. The Irvine Company started developing the area in the 1960s and the city was formally incorporated on December 28, 1971.", + "visible_link": "https://en.wikipedia.org/wiki/Irvine,_California", + "rank": 3 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/irvine/US0CA0512.html", + "title": "Wetter Irvine | wetter.com", + "snippet": "In Irvine gibt es tagsüber einen wolkenlosen Himmel und die Temperaturen liegen zwischen 8 und 14°C. Nachts gibt es keine Wolken und die Sterne sind klar zu erkennen bei Werten von 9°C.", + "visible_link": "www.wetter.com › Nordamerika › USA", + "rank": 4 + }, + { + "link": "https://www.wetteronline.de/wettertrend/irvine", + "title": "14-Tage-Wetter Irvine - WetterOnline", + "snippet": "Wetterbericht Irvine. Nach einem Donnerstag mit Wolken und Sonne steht beim Wetter für Irvine einem sonnenreichen Freitag nichts mehr im Wege.", + "visible_link": "www.wetteronline.de › … › US-Westküste › Kalifornien › Irvine", + "rank": 5 + }, + { + "link": "https://www.zillow.com/irvine-ca/", + "title": "Irvine Real Estate - Irvine CA Homes For Sale | Zillow", + "snippet": "Zillow has 1,065 homes for sale in Irvine CA. View listing photos, review sales history, and use our detailed real estate filters to find the perfect place.", + "visible_link": "https://www.zillow.com/irvine-ca", + "rank": 6 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g32530-Irvine_California-Vacations.html", + "title": "Irvine 2019: Best of Irvine, CA Tourism - TripAdvisor", + "snippet": "Irvine Tourism: TripAdvisor has 27,698 reviews of Irvine Hotels, Attractions, and Restaurants making it your best Irvine resource.", + "visible_link": "www.tripadvisor.com › … › California (CA) › Orange County", + "rank": 7 + }, + { + "link": "https://www.atrumpa.de/Irvine_s13", + "title": "Irvine, Seite 13 - Atrumpa preiswert Kaufen Baumaschienen ...", + "snippet": "Irvine: Vergaser (Aero) Irvine 36 - Vergaser Assembly Bolzen Irvine 36 - Vergaser - 8905A - Vergaser Prüfkit - Jetstream - Venturi Irvine 20 Pylon MkIII -", + "visible_link": "https://www.atrumpa.de/Irvine_s13", + "rank": 8 + }, + { + "link": "https://en.wikipedia.org/wiki/Irvine,_North_Ayrshire", + "title": "Irvine, North Ayrshire - Wikipedia", + "snippet": "The harbour for Irvine has a long history and once was one of the most prominent ports in Scotland after Glasgow. Across from the main harbour itself there was a terminal for the ICI-Nobel Explosives plant on the River Garnock.", + "visible_link": "https://en.wikipedia.org/wiki/Irvine,_North_Ayrshire", + "rank": 9 + } + ] + } + }, + "Gilbert": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:22 GMT", + "no_results": false, + "effective_query": "", + "num_results": "9.650.000 Ergebnisse", + "results": [ + { + "link": "https://www.gilbert-music.com/", + "title": "Gilbert - Tausend Raketen - Offizielle Website", + "snippet": "Die offizielle Website des Schlagerstars mit News, Terminen und Musik von Gilbert. Außerdem finden Sie Fotos, ein Gästebuch und vieles mehr.", + "visible_link": "https://www.gilbert-music.com", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Gilbert_(S%C3%A4nger)", + "title": "Gilbert (Sänger) – Wikipedia", + "snippet": "Biografie. Gilbert wurde in Innsbruck geboren und wuchs im Tiroler Ötztal auf. Mit neun Jahren hatte er seinen ersten Bühnenauftritt und hatte vier Jahre später eine eigene Band.", + "visible_link": "https://de.wikipedia.org/wiki/Gilbert_(Sänger)", + "rank": 2 + }, + { + "link": "https://de.wikipedia.org/wiki/Gilbert", + "title": "Gilbert – Wikipedia", + "snippet": "Dies ist eine Begriffsklärungsseite zur Unterscheidung mehrerer mit demselben Wort bezeichneter Begriffe.", + "visible_link": "https://de.wikipedia.org/wiki/Gilbert", + "rank": 3 + }, + { + "link": "https://www.facebook.com/gilbert.at/", + "title": "Gilbert Singer/Songwriter - Home | Facebook", + "snippet": "Pünktlich zum GILBERT OPEN AIR erscheint das neue Album „JETZT ERST RECHT“ (VÖ 08.06.18), welches am 09.06.18 auch vor Ort in Imst erhältlich ist.", + "visible_link": "https://www.facebook.com/gilbert.at", + "rank": 4 + }, + { + "link": "https://www.musixmatch.com/de/songtexte/Gilbert-3", + "title": "Gilbert Songtext | Musixmatch", + "snippet": "Alle Songtexte von Gilbert nach Beliebtheit sortiert, mit Videos und Erklärungen.", + "visible_link": "https://www.musixmatch.com/de/songtexte/Gilbert-3", + "rank": 5 + }, + { + "link": "https://www.dastelefonbuch.de/Suche/Gilbert/Berlin", + "title": "Gilbert, Berlin im Das Telefonbuch - Jetzt finden!", + "snippet": "Gilbert, Berlin gesucht? Richtige Adressen und Telefonnummern finden! 79 Einträge mit aktuellen Kontaktdaten, Öffnungszeiten und Bewertungen ☎ Das Telefonbuch - Ihre Nr. 1 …", + "visible_link": "https://www.dastelefonbuch.de/Suche/Gilbert/Berlin", + "rank": 6 + }, + { + "link": "https://flexikon.doccheck.com/de/Morbus_Gilbert-Meulengracht", + "title": "Morbus Gilbert-Meulengracht - DocCheck Flexikon", + "snippet": "nach dem französischen Arzt Nicolas Augustin Gilbert (1858-1927) und dem dänischen Arzt Jens Einar Meulengracht (1887-1976) Synonyme: Familiärer, nicht-hämolytischer Ikterus, Meulengracht-Krankheit, Gilbert-Syndrom, Icterus intermittens juvenilis", + "visible_link": "https://flexikon.doccheck.com/de/Morbus_Gilbert-Meulengracht", + "rank": 7 + }, + { + "link": "https://gilbert-energie.de/", + "title": "gilbert-energie.de - Herzlich Willkommen auf unsere Website!", + "snippet": "Herzlich Willkommen auf unsere Website! Informieren Sie sich auf unserer Internetseite umfassend über unsere Produkte und Dienstleistungen. Unser Konzept bietet Ihnen maßgeschneiderte Lösungen in den Bereichen Energie, Tank- und Heiztechnik, Regenwassernutzung sowie Services.", + "visible_link": "https://gilbert-energie.de", + "rank": 8 + }, + { + "link": "https://www.gilbertrugby.com/eng", + "title": "Gilbert Rugby - Rugby's Original Brand", + "snippet": "Gilbert Rugby History since 1823. Since the beginning; William Webb Ellis picked up a Gilbert rugby ball at Rugby school in 1823 and invented the game of rugby union", + "visible_link": "https://www.gilbertrugby.com/eng", + "rank": 9 + }, + { + "link": "https://www.gilbert.nrw/", + "title": "gilbert design druck werbetechnik GmbH • Print-Agentur in NRW", + "snippet": "Ein kreatives Medienhaus in Essen-Rüttenscheid (NRW), das erstklassige Mediengestaltung, hochwertige Druckerei-Erzeugnisse und innovative Werbetechnik anbietet.", + "visible_link": "https://www.gilbert.nrw", + "rank": 10 + } + ] + } + }, + "Richmond": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:24 GMT", + "no_results": false, + "effective_query": "", + "num_results": "17.500.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Richmond_(Virginia)", + "title": "Richmond (Virginia) – Wikipedia", + "snippet": "Richmond ist die Hauptstadt des US-Bundesstaates Virginia in den Vereinigten Staaten und ist Sitz der Virginia Commonwealth University. Während des Amerikanischen Bürgerkrieges 1861 bis 1865 war Richmond Hauptstadt der Konföderation.", + "visible_link": "https://de.wikipedia.org/wiki/Richmond_(Virginia)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Richmond", + "title": "Richmond – Wikipedia", + "snippet": "Dies ist eine Begriffsklärungsseite zur Unterscheidung mehrerer mit demselben Wort bezeichneter Begriffe.", + "visible_link": "https://de.wikipedia.org/wiki/Richmond", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g60893-Richmond_Virginia-Vacations.html", + "title": "Richmond, VA: Tourismus in Richmond - TripAdvisor", + "snippet": "Entdecken Sie ein wichtiges Kapitel amerikanischer Geschichte in den kopfsteingepflasterten Straßen, an den Uferpromenaden und den Sehenswürdigkeiten von Richmond.", + "visible_link": "www.tripadvisor.de › USA › Virginia (VA)", + "rank": 3 + }, + { + "link": "https://www.stylight.de/John-Richmond/", + "title": "John Richmond: 747 Produkte | Stylight", + "snippet": "Der rockige Style der Stars: John Richmond Let´s rock mit John Richmond Bekleidung und Accessoires. Der Modemacher designt den angesagten Street Chic der jungen Trendsetter-Generation und steht für rockige Designermode, die auch im Schrank von …", + "visible_link": "https://www.stylight.de/John-Richmond", + "rank": 4 + }, + { + "link": "https://www.richmond.com/", + "title": "Richmond, Va., News, Entertainment, Weather, …", + "snippet": "27.02.2019 · Richmond.com is Richmond, Virginia’s source for local news, events, sports, business news, food & dining, entertainment, commentary and classifieds.", + "visible_link": "https://www.richmond.com", + "rank": 5 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g60893-Richmond_Virginia-Vacations.html", + "title": "Richmond 2019: Best of Richmond, VA Tourism - …", + "snippet": "Discover an essential chapter of America's history in the cobblestone streets, river walks and monuments of Richmond. Originally a colonial settlement, Virginia's capital is now a …", + "visible_link": "www.tripadvisor.com › United States › Virginia (VA)", + "rank": 6 + }, + { + "link": "http://www.visitrichmond.co.uk/", + "title": "Visit Richmond | London Borough of Richmond …", + "snippet": "What's on in Richmond. Welcome to Richmond upon Thames, a jewel in London’s crown. Probably London's most attractive borough, it has long been a favourite retreat for …", + "visible_link": "www.visitrichmond.co.uk", + "rank": 7 + }, + { + "link": "https://en.wikipedia.org/wiki/Richmond,_London", + "title": "Richmond, London - Wikipedia", + "snippet": "Richmond is a suburban town in south-west London, 8.2 miles (13.2 km) west-southwest of Charing Cross. It is on a meander of the River Thames, with a large number of parks and open spaces, including Richmond Park, and many protected conservation areas, which include much of Richmond Hill. A specific Act of Parliament protects the scenic view of ...", + "visible_link": "https://en.wikipedia.org/wiki/Richmond,_London", + "rank": 8 + } + ] + } + }, + "Los Angeles": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:46 GMT", + "no_results": false, + "effective_query": "", + "num_results": "189.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Los_Angeles", + "title": "Los Angeles – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/Los_Angeles", + "rank": 1 + }, + { + "link": "https://www.wetteronline.de/wetter/los-angeles", + "title": "Wetter Los Angeles - aktuelle Wettervorhersage von ...", + "snippet": "Wetter Los Angeles. Das Wetter für Los Angeles im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Los Angeles finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › US-Westküste › Kalifornien", + "rank": 2 + }, + { + "link": "https://www.holidaycheck.de/dh/hotels-los-angeles/7b4729ba-3f59-33d1-abca-c07ad9e01df7", + "title": "Hotels Los Angeles - HolidayCheck", + "snippet": "TOP Hotel Los Angeles Jetzt die besten & günstigsten Los Angeles Hotels finden 100€ Gutschein GRATIS Hotline Bestpreis-Garantie Hotelbewertungen Preisvergleich Jetzt günstig Urlaub buchen", + "visible_link": "www.holidaycheck.de › Nordamerika › USA › Kalifornien", + "rank": 3 + }, + { + "link": "http://www.kalifornien-tour.de/la.htm", + "title": "Los Angeles - Kalifornien", + "snippet": "Los Angeles in Kalifornien. Eigentlich ist Los Angeles keine richtige Stadt, sondern eine wild gewachsene Ansammlung an Häusern aus 100 verschiedenen Städten, Orten, Küsten, Stränden und Canyons, verbunden durch ein verwirrendes Netz von Freeways.", + "visible_link": "www.kalifornien-tour.de/la.htm", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g32655-Los_Angeles_California-Vacations.html", + "title": "Los Angeles 2019: Best of Los Angeles, CA …", + "snippet": "Los Angeles Tourism: TripAdvisor has 675,063 reviews of Los Angeles Hotels, Attractions, and Restaurants making it your best Los Angeles resource.", + "visible_link": "www.tripadvisor.com › United States › California (CA)", + "rank": 5 + }, + { + "link": "https://www.booking.com/city/us/los-angeles.de.html", + "title": "Die 30 besten Hotels in Los Angeles, USA (Ab € 53)", + "snippet": "Sichern Sie sich tolle Angebote und buchen Sie Ihr Hotel in Los Angeles, USA online. Gute Verfügbarkeiten und attraktive Preise. Lesen Sie Hotelbewertungen und wählen Sie das beste Hotelangebot für Ihren Aufenthalt.", + "visible_link": "https://www.booking.com/city/us/los-angeles.de.html", + "rank": 6 + } + ] + } + }, + "Dallas": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:48 GMT", + "no_results": false, + "effective_query": "", + "num_results": "19.400.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Dallas_(Fernsehserie,_1978)", + "title": "Dallas (Fernsehserie, 1978) – Wikipedia", + "snippet": "Dallas ist eine von 1978 bis 1991 produzierte US-amerikanische Fernsehserie, die in der gleichnamigen texanischen Stadt Dallas spielt und die Verwicklungen der fiktiven Familie Ewing darstellt.", + "visible_link": "https://de.wikipedia.org/wiki/Dallas_(Fernsehserie,_1978)", + "rank": 1 + }, + { + "link": "https://www.imdb.com/title/tt0077000/", + "title": "Dallas (TV Series 1978–1991) - IMDb", + "snippet": "02.04.1978 · Dallas Kept you in suspense through the whole especially when J.R got shot after the 3rd season. The Ewing family always kept people in the community about what went on at Southport Ranch. The Ewing family always kept people in the community about what went on at Southport Ranch.", + "visible_link": "www.imdb.com › … See all › 1991", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g55711-Dallas_Texas-Vacations.html", + "title": "Dallas, TX: Tourismus in Dallas - TripAdvisor", + "snippet": "Auf TripAdvisor finden Sie alles für Dallas, Texas: 290.928 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › USA › Texas (TX)", + "rank": 3 + }, + { + "link": "https://www.moviepilot.de/serie/dallas", + "title": "Dallas | Serie 1978 - 1991 | moviepilot.de", + "snippet": "Dallas ist eine Familiensaga aus dem Jahr 1978 von David Jacobs mit Barbara Bel Geddes und Patrick Duffy. Der Aufstieg einer texanischen Farmerfamilie, die durch Ölfunde unversehens zu fast ...", + "visible_link": "www.moviepilot.de › … › The Walking Dead › Der Herr der Ringe", + "rank": 4 + }, + { + "link": "https://en.wikipedia.org/wiki/Dallas", + "title": "Dallas - Wikipedia", + "snippet": "Dallas (/ ˈ d æ l ə s /) is a city in the U.S. state of Texas. With an estimated 2017 population of 1,341,075, it is the ninth most-populous city in the U.S. and third in Texas after Houston and San Antonio. Dallas is the main core of the largest metropolitan area in the Southern United …", + "visible_link": "https://en.wikipedia.org/wiki/Dallas", + "rank": 5 + }, + { + "link": "http://www.usatourist.com/deutsch/destinations/texas/dallas/dallas-main.html", + "title": "Dallas in Texas - usatourist.com", + "snippet": "Das Grosse D. Dallas liegt im nordöstlichen Texas, ungefähr 400 km nördlich von Houston und 300 km südlich von Oklahoma City. Der Trinity Fluss fliesst durch die Stadt und es gibt mehr als 60 Seen in der Gegend Viele der Seen geben die Möglichkeit, Freizeitgestaltungen …", + "visible_link": "www.usatourist.com/deutsch/destinations/texas/dallas/dallas-main.html", + "rank": 6 + }, + { + "link": "https://www.fernsehserien.de/dallas-1978/episodenguide", + "title": "Dallas (1978) Episodenguide – fernsehserien.de", + "snippet": "Episodenführer der TV-Serie – Staffel 1 · Staffel 2 · Staffel 3 · Staffel 4 · Staffel 5 · Staffel 6 · Staffel 7 · Staffel 8 · Staffel 9 · Filme · …", + "visible_link": "https://www.fernsehserien.de/dallas-1978/episodenguide", + "rank": 7 + }, + { + "link": "http://www.superrtl.de/serien-shows/dallas/dallas-398.htm", + "title": "Dallas | superrtl.de", + "snippet": "DALLAS Das Leben auf der Southfork Ranch geht weiter. Die Hauptrollen übernehmen diesmal nicht die Ewing-Brüder J.R. und Bobby, sondern deren Söhne John Ross der Dritte (Josh Henderson) und Christopher (Jesse Metcalfe).", + "visible_link": "www.superrtl.de/serien-shows/dallas/dallas-398.htm", + "rank": 8 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g55711-Dallas_Texas-Vacations.html", + "title": "Dallas 2019: Best of Dallas, TX Tourism - TripAdvisor", + "snippet": "Dallas Tourism: TripAdvisor has 291,533 reviews of Dallas Hotels, Attractions, and Restaurants making it your best Dallas resource.", + "visible_link": "www.tripadvisor.com › United States › Texas (TX)", + "rank": 9 + }, + { + "link": "https://en.wikipedia.org/wiki/Dallas_(1978_TV_series)", + "title": "Dallas (1978 TV series) - Wikipedia", + "snippet": "Dallas is an American prime time television soap opera that aired on CBS from April 2, 1978 to May 3, 1991. The series revolves around a wealthy and feuding Texas family, the Ewings, who own the independent oil company Ewing Oil and the cattle-ranching land of Southfork.", + "visible_link": "https://en.wikipedia.org/wiki/Dallas_(1978_TV_series)", + "rank": 10 + } + ] + } + }, + "Charlotte": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:51 GMT", + "no_results": false, + "effective_query": "", + "num_results": "17.200.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Charlotte_(North_Carolina)", + "title": "Charlotte (North Carolina) – Wikipedia", + "snippet": "Charlotte ist die größte Stadt des US-Bundesstaates North Carolina und die siebzehntgrößte Stadt in den Vereinigten Staaten. Die Stadt befindet sich an der Grenze zu South Carolina zentral im Mecklenburg County, dessen Verwaltungssitz (County Seat) sie auch ist.", + "visible_link": "https://de.wikipedia.org/wiki/Charlotte_(North_Carolina)", + "rank": 1 + }, + { + "link": "http://cbb-charlotte.de/", + "title": "Charlotte – Café – Bar – Bistro", + "snippet": "Über uns. Karte. Events", + "visible_link": "cbb-charlotte.de", + "rank": 2 + }, + { + "link": "https://charlotte1907.de/", + "title": "Home | Charlottenburger Baugenossenschaft eG", + "snippet": "Bei einer Wohnungsbaugenossenschaft zu wohnen, ist etwas ganz Besonderes... Denn im Gegensatz zum herkömmlichen Mieterdasein bilden die Mitglieder einer Genossenschaft - also auch die der \"Charlotte\" - eine echte Solidargemeinschaft.", + "visible_link": "https://charlotte1907.de", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Restaurant_Review-g187323-d1037185-Reviews-Charlotte-Berlin.html", + "title": "Charlotte, Berlin - Spandau (Bezirk) - Restaurant ...", + "snippet": "Wir waren während unseres Berlin Aufenthalts mehrfach zum frühstücken in Charlotte. Die Bedienungen jedes Mal sehr freundlich, die Auswahl ordentlich und der Preis recht günstig.", + "visible_link": "www.tripadvisor.de › … › Berlin › Restaurants Berlin - Bewertungen", + "rank": 4 + }, + { + "link": "https://speisekarte.menu/restaurants/berlin/cafe-bar-bistro-charlotte-spandau-in-spandau", + "title": "Cafe-Bar-Bistro Charlotte Spandau in Spandau aus Berlin ...", + "snippet": "Die Speisekarte des Cafe-Bar-Bistro Charlotte Spandau in Spandau der Kategorie Café aus Berlin, Charlottenstraße 14A. können Sie hier einsehen oder hinzufügen.", + "visible_link": "https://speisekarte.menu/restaurants/berlin/cafe-bar-bistro...", + "rank": 5 + }, + { + "link": "http://www.mein-spandau.info/bars-in-spandau/", + "title": "Bars in Spandau - da lohnt es sich hinzugehen | Spandau ...", + "snippet": "Internet: www.cbb-charlotte.de ….weitere Bars in Spandau direkt in Das Örtliche finden: Haben Sie noch ein weitere Tipps und können Sie uns „Ihre“ Bars empfehlen, dann schreiben Sie uns doch: reaktion@mein-spandau.info", + "visible_link": "www.mein-spandau.info/bars", + "rank": 6 + }, + { + "link": "http://cbb-charlotte.de/karte/", + "title": "Karte – Charlotte", + "snippet": "Absynth ist ein alkoholisches Getränk, welches Wermut, Anis und andere Kräuter enthält und ist in weiten Teilen der Erde legal. Das Märchen vom Thujonrausch …", + "visible_link": "cbb-charlotte.de/karte", + "rank": 7 + }, + { + "link": "https://charlotte1907.de/wohnungsangebote/gaestewohnungen/wohnung/spandau-1.html", + "title": "Spandau (1) | Charlottenburger Baugenossenschaft eG", + "snippet": "Die größere unserer beiden Spandauer Gästewohnungen bietet für Sie oder Ihre Gäste auf ca. 64 m² einen gemütlichen Wohnbereich mit Fernseher, ein Schlafzimmer, ein …", + "visible_link": "https://charlotte1907.de/wohnungsangebote/gaestewohnungen/wohnung/...", + "rank": 8 + } + ] + } + }, + "Washington": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:54 GMT", + "no_results": false, + "effective_query": "", + "num_results": "25.500.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Washington_(Bundesstaat)", + "title": "Washington (Bundesstaat) – Wikipedia", + "snippet": "Washington (engl. Aussprache [ˈwɒʃɪŋtən]) ist ein Bundesstaat der Vereinigten Staaten von Amerika. Er liegt im Nordwesten der USA an der Küste des Pazifischen Ozeans, nördlich von Oregon, westlich von Idaho, und südlich von British Columbia in Kanada.", + "visible_link": "https://de.wikipedia.org/wiki/Washington_(Bundesstaat)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Washington,_D.C.", + "title": "Washington, D.C. – Wikipedia", + "snippet": "Washington, D.C. Im Uhrzeigersinn von oben rechts: das Kapitol, das Washington Monument, das Weiße Haus, das Smithsonian Institution Building, das Lincoln Memorial und die Washington National Cathedral am Abend", + "visible_link": "https://de.wikipedia.org/wiki/Washington,_D.C.", + "rank": 2 + }, + { + "link": "https://washington.org/de/homepage", + "title": "Washington, DC für Besucher aus aller Welt | Washington.org", + "snippet": "Washington, DC ist unvergleichlich. Es ist eine Weltstadt mit ikonischen Denkmälern und Gedenkstätten, fantastischen (und kostenfreien) Museen, politischer Leidenschaft, ausländischen Botschaften, historischen Vierteln und Ehrfurcht gebietenden Universitäten und Hochschulen.", + "visible_link": "https://washington.org/de/homepage", + "rank": 3 + }, + { + "link": "https://en.wikipedia.org/wiki/Washington,_D.C.", + "title": "Washington, D.C. - Wikipedia", + "snippet": "Washington, D.C., formally the District of Columbia and commonly referred to as Washington or D.C., is the capital of the United States. Founded after the American Revolution as the seat of government of the newly independent country, Washington was named after George Washington, first President of the United States and Founding ...", + "visible_link": "https://en.wikipedia.org/wiki/Washington,_D.C.", + "rank": 4 + }, + { + "link": "https://de.wiktionary.org/wiki/Washington", + "title": "Washington – Wiktionary", + "snippet": "Anmerkung zum Artikelgebrauch: Der Artikel wird gebraucht, wenn „Washington“ in einer bestimmten Qualität, zu einem bestimmten Zeitpunkt oder Zeitabschnitt als Subjekt oder Objekt im Satz steht.", + "visible_link": "https://de.wiktionary.org/wiki/Washington", + "rank": 5 + }, + { + "link": "https://en.wikipedia.org/wiki/Washington_(state)", + "title": "Washington (state) - Wikipedia", + "snippet": "Washington is the northwestern-most state of the contiguous United States. It borders Idaho to the east, bounded mostly by the meridian running north from the confluence of the Snake River and Clearwater River (about 116°57' west), except for the southernmost …", + "visible_link": "https://en.wikipedia.org/wiki/Washington_(state)", + "rank": 6 + }, + { + "link": "https://simple.wikipedia.org/wiki/Washington_(state)", + "title": "Washington (state) - Simple English Wikipedia, …", + "snippet": "Washington is a state in the Pacific Northwest region of the United States. It is north of Oregon, west of Idaho, east of the Pacific Ocean, and south of British Columbia.", + "visible_link": "https://simple.wikipedia.org/wiki/Washington_(state)", + "rank": 7 + }, + { + "link": "https://www.washington.edu/", + "title": "washington.edu - UW Homepage", + "snippet": "No needles required. Dr. Sheena Hembrador, Res. ’17, combined UW Medicine and College of Engineering expertise to design a tiny device that can help find a …", + "visible_link": "https://www.washington.edu", + "rank": 8 + } + ] + } + }, + "Las Vegas": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:57 GMT", + "no_results": false, + "effective_query": "", + "num_results": "163.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Las_Vegas", + "title": "Las Vegas – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/Las_Vegas", + "rank": 1 + }, + { + "link": "https://www.vegas-online.de/", + "title": "Las Vegas Reiseführer - Infos, Tipps, alles über Las Vegas", + "snippet": "Las Vegas Sehenswürdigkeiten am Las Vegas Strip. Las Vegas Urlaub, Shows, Hotels, Buffets, Heiraten, Helikopter, Ausflüge in die Umgebung, Nationalparks USA", + "visible_link": "https://www.vegas-online.de", + "rank": 2 + }, + { + "link": "https://www.booking.com/city/us/las-vegas.de.html", + "title": "Die 30 besten Hotels in Las Vegas, USA (Ab € 24)", + "snippet": "Sichern Sie sich tolle Angebote und buchen Sie Ihr Hotel in Las Vegas, USA online. Gute Verfügbarkeiten und attraktive Preise. Lesen Sie Hotelbewertungen und wählen Sie das beste Hotelangebot für Ihren Aufenthalt.", + "visible_link": "https://www.booking.com/city/us/las-vegas.de.html", + "rank": 3 + }, + { + "link": "https://www.holidaycheck.de/dh/hotels-las-vegas/0106591a-3c8e-31fa-b5aa-998da6753c84", + "title": "Hotels Las Vegas - HolidayCheck", + "snippet": "", + "visible_link": "www.holidaycheck.de › Nordamerika › USA › Nevada", + "rank": 4 + }, + { + "link": "https://www.lasvegas.com/", + "title": "Las Vegas travel deals on hotels, shows, and …", + "snippet": "Vacation your way with deals at the all-new LasVegas.com. The top site for Las Vegas travel deals on hotels, shows and things to do on your next Vegas vacation.", + "visible_link": "https://www.lasvegas.com", + "rank": 5 + }, + { + "link": "https://www.urlaubsguru.de/urlaubsziele/las-vegas/", + "title": "Las Vegas - kostenloser Online-Reiseführer für die ...", + "snippet": "Las Vegas Reiseführer - Wichtige Infos, Tipps, passende Angebote zum Schnäppchenpreis & alles, was ihr für einen Urlaub in der Glitzermetropole braucht.", + "visible_link": "https://www.urlaubsguru.de/urlaubsziele/las-vegas", + "rank": 6 + }, + { + "link": "https://www.urlaubsguru.de/tag/las-vegas/", + "title": "Las Vegas Urlaub - die besten Angebote | Urlaubsguru.de", + "snippet": "Finde jetzt deinen Las Vegas Urlaub zum Schnäppchenpreis. Auf meinem Blog findest du die besten Deals. Urlaubsguru.de - Für wenig Geld rund um die Welt!", + "visible_link": "https://www.urlaubsguru.de/tag/las-vegas", + "rank": 7 + } + ] + } + }, + "Kansas City": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:00 GMT", + "no_results": false, + "effective_query": "", + "num_results": "132.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Kansas_City_(Missouri)", + "title": "Kansas City (Missouri) – Wikipedia", + "snippet": "Kansas City ist mit rund 480.000 Einwohnern (Schätzung 2016 des U.S. Census Bureau) die größte Stadt im US-Bundesstaat Missouri. Ihr Stadtgebiet erstreckt sich über die vier Countys Clay, Cass, Jackson und Platte.", + "visible_link": "https://de.wikipedia.org/wiki/Kansas_City_(Missouri)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Kansas_City_(Kansas)", + "title": "Kansas City (Kansas) – Wikipedia", + "snippet": "Kansas City ist mit rund 152.000 Einwohnern die drittgrößte Stadt im US-Bundesstaat Kansas und eine traditionsreiche Industriestadt mit Schwerpunkten in der Nahrungsmittel- und Chemieindustrie sowie Standort einer Universitätsklinik.", + "visible_link": "https://de.wikipedia.org/wiki/Kansas_City_(Kansas)", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g38815-Activities-Kansas_City_Kansas.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Kansas City 2019 (mit ...", + "snippet": "", + "visible_link": "www.tripadvisor.de › USA › Kansas (KS) › Kansas City", + "rank": 3 + }, + { + "link": "https://www.finanzen.net/aktien/Kansas_City_Southern-Aktie", + "title": "KANSAS CITY SOUTHERN AKTIE - finanzen.net", + "snippet": "Die Kansas City Southern Aktie wird unter der ISIN US4851703029 an den Börsen Frankfurt, München, Stuttgart, Berlin, New York, NYSE MKT, NYSE Arca, CTA …", + "visible_link": "www.finanzen.net › Aktien", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g44535-Activities-Kansas_City_Missouri.html", + "title": "Beste Attraktionen in Kansas City, MO - tripadvisor.de", + "snippet": "", + "visible_link": "www.tripadvisor.de › USA › Missouri (MO) › Kansas City", + "rank": 5 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g44535-Activities-Kansas_City_Missouri.html", + "title": "THE 15 BEST Things to Do in Kansas City - …", + "snippet": "Book your tickets online for the top things to do in Kansas City, Missouri on TripAdvisor: See 44,871 traveler reviews and photos of Kansas City tourist attractions. Find what to do today, this weekend, or in March. We have reviews of the best places to see in Kansas City. Visit top-rated & must-see attractions.", + "visible_link": "www.tripadvisor.com › … › Missouri (MO) › Kansas City", + "rank": 6 + }, + { + "link": "https://www.visitkc.com/", + "title": "Kansas City Tourism - Visit KC.com™ - …", + "snippet": "Visit the official site for Kansas City tourism and conventions. Discover a world of vibrant arts, delicious dining and Midwest hospitality at its finest.", + "visible_link": "https://www.visitkc.com", + "rank": 7 + } + ] + } + }, + "Miami": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:02 GMT", + "no_results": false, + "effective_query": "", + "num_results": "18.800.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Miami", + "title": "Miami – Wikipedia", + "snippet": "Miami [maɪˈæmɪ] (City of Miami) ist eine City und der Verwaltungssitz des Miami-Dade County im US-Bundesstaat Florida mit 463.347 Einwohnern (Stand: 2017). Das …", + "visible_link": "https://de.wikipedia.org/wiki/Miami", + "rank": 1 + }, + { + "link": "https://www.miami-florida.de/", + "title": "Miami Florida Reiseführer mit vielen Informationen zu ...", + "snippet": "Reiseführer über die Millionenmetropole Miami in Florida mit Hotelbeschreibungen, Ausflugsmöglichkeiten, Nachtleben, Restaurants, Wetter und Klima in Miami…", + "visible_link": "https://www.miami-florida.de", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g34438-Miami_Florida-Vacations.html", + "title": "Miami, FL: Tourismus in Miami - TripAdvisor", + "snippet": "Miami ist heiß, heiß und heiß! Dies bezieht sich aber nicht nur auf das Wetter, sondern auch auf das glühende Nachtleben mit lateinamerikanischen Einflüssen und einer feurigen Salsakultur.", + "visible_link": "www.tripadvisor.de › USA › Florida (FL)", + "rank": 3 + }, + { + "link": "https://wikitravel.org/de/Miami", + "title": "Miami – Wikitravel", + "snippet": "Miami ist eine Stadt im Miami-Dade County in Florida im Südosten der USA. Noch um 1900 bestand Miami nur aus einigen wenigen Straßen, heute ist es eine der …", + "visible_link": "https://wikitravel.org/de/Miami", + "rank": 4 + }, + { + "link": "https://www.my-miami-beach.de/", + "title": "Miami Beach", + "snippet": "Große Kinoerfolge wie Miami Vice, Scarface, Bad Boys II, The Birdcage, Fast 2 Furious, Reno 911, Transporter 2 und True Lies sind nur einige der wenigen Filme die hier in Miami Beach und Miami, wenn auch nur teilweise, gedreht wurden.", + "visible_link": "https://www.my-miami-beach.de", + "rank": 5 + }, + { + "link": "https://www.youtube.com/watch?v=IwBS6QGsH_4", + "title": "Will Smith - Miami - YouTube", + "snippet": "27.03.2011 · Will Smith's official music video for 'Miami'. Click to listen to Will Smith on Spotify: http://smarturl.it/WSmithSpot?IQid=WSmithMIA As featured on Greatest...", + "visible_link": "https://www.youtube.com/watch?v=IwBS6QGsH_4", + "rank": 6 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/miami/US0FL0320.html", + "title": "Wetter Miami | wetter.com", + "snippet": "In Miami regnet es tagsüber bei Werten von 25 bis zu 30°C. Nachts gibt es keine Wolken und die Sterne sind klar zu erkennen und die Temperatur fällt auf 24°C.", + "visible_link": "www.wetter.com › Nordamerika › USA › Florida", + "rank": 7 + }, + { + "link": "https://www.nba.com/heat/", + "title": "Miami HEAT | Miami HEAT Team News - nba.com", + "snippet": "The Miami HEAT of the National Basketball Association are a professional basketball team based in Miami, Florida that competes in the Southeast Division of the Eastern Conference. Founded in 1988 ...", + "visible_link": "https://www.nba.com/heat", + "rank": 8 + }, + { + "link": "https://www.visitflorida.com/en-us/cities/miami.html", + "title": "Miami Florida - Discover Top Things to Do in …", + "snippet": "EarthCam has teamed up with Greater Miami and The Beaches to offer a live virtual tour of Miami Beach in Miami, Florida. These live webcams take you to beaches, parks and walking districts, making you wish you were in Miami right now!", + "visible_link": "https://www.visitflorida.com/en-us/cities/miami.html", + "rank": 9 + }, + { + "link": "https://en.wikipedia.org/wiki/Miami", + "title": "Miami - Wikipedia", + "snippet": "Miami, officially the City of Miami, is the cultural, economic and financial center of South Florida. Miami is the seat of Miami-Dade County, the most populous county in Florida.", + "visible_link": "https://en.wikipedia.org/wiki/Miami", + "rank": 10 + } + ] + } + }, + "New Orleans": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:05 GMT", + "no_results": false, + "effective_query": "", + "num_results": "52.200.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/New_Orleans", + "title": "New Orleans – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/New_Orleans", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g60864-Activities-New_Orleans_Louisiana.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in New Orleans 2019 (mit ...", + "snippet": "21.02.2019 Top 10 New Orleans Sehenswürdigkeiten: Hier finden Sie 290.146 Bewertungen und Fotos von Reisenden über 326 Sehenswürdigkeiten, Touren und Ausflüge - alle New Orleans …", + "visible_link": "www.tripadvisor.de › USA › Louisiana (LA) › New Orleans", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g60864-New_Orleans_Louisiana-Vacations.html", + "title": "New Orleans, LA: Tourismus in New Orleans - TripAdvisor", + "snippet": "Laissez les bons temps rouler! In New Orleans ist dies stets das Motto, insbesondere in der Bourbon Street, die nicht zuletzt aufgrund der jährlichen Feierlichkeiten am Faschingsdienstag der Hauptanziehungspunkt für alle Partyhungrigen ist.", + "visible_link": "www.tripadvisor.de › USA › Louisiana (LA)", + "rank": 3 + }, + { + "link": "https://www.neworleans.com/", + "title": "Visit New Orleans | Official New Orleans Tourism …", + "snippet": "New Orleans is the best city to visit for fun, parties, events and culture. See a Saints game at the Superdome, a Mardi Gras parade in the French Quarter or a Jazz Fest concert!", + "visible_link": "https://www.neworleans.com", + "rank": 4 + }, + { + "link": "https://www.visittheusa.de/destination/new-orleans", + "title": "New Orleans | Visit The USA", + "snippet": "Egal zu welcher Jahreszeit – New Orleans heißt seine Besucher in aller Feierlichkeit willkommen und lädt euch dazu ein, eine einzigartige Mischung aus karibischen, amerikanischen, französischen und afrikanischen Aromen, Emotionen und Klängen zu erleben.", + "visible_link": "https://www.visittheusa.de/destination/new-orleans", + "rank": 5 + }, + { + "link": "https://neworleans.de/", + "title": "HOME - Fremdenverkehrsbüro New Orleans", + "snippet": "Um dem erhöhten Besucheraufkommen auch in Zukunft gerecht zu werden, wird der neue Terminal des Louis Armstrong New Orleans International Airport, der sich derzeit noch im Bau befindet, um fünf zusätzliche Gates auf insgesamt 35 Gates erweitert.", + "visible_link": "https://neworleans.de", + "rank": 6 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g60864-New_Orleans_Louisiana-Vacations.html", + "title": "New Orleans 2019: Best of New Orleans, LA …", + "snippet": "Laissez les bons temps rouler! In New Orleans the good times are perpetually rolling down Bourbon Street, which, thanks to the city’s annual Mardi Gras celebration, has quite a party animal reputation.", + "visible_link": "www.tripadvisor.com › United States › Louisiana (LA)", + "rank": 7 + } + ] + } + }, + "St. Louis": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:09 GMT", + "no_results": false, + "effective_query": "", + "num_results": "135.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/St._Louis", + "title": "St. Louis – Wikipedia", + "snippet": "St. Louis (ausgeschrieben Saint Louis) [ˌseɪntˈluːɪs] ist eine Stadt im US-Bundesstaat Missouri am westlichen Ufer des Mississippi mit 319.294 Einwohnern (Volkszählung 2010).", + "visible_link": "https://de.wikipedia.org/wiki/St._Louis", + "rank": 1 + }, + { + "link": "https://en.wikipedia.org/wiki/St._Louis", + "title": "St. Louis - Wikipedia", + "snippet": "St. Louis (/ s eɪ n t ˈ l uː ɪ s /) is an independent city and a major U.S. port in the state of Missouri, built along the western bank of the Mississippi River, which marks Missouri's border with Illinois.", + "visible_link": "https://en.wikipedia.org/wiki/St._Louis", + "rank": 2 + }, + { + "link": "https://explorestlouis.com/", + "title": "Explore St Louis & Find Fun Attractions, Good …", + "snippet": "St Louis is home to a variety of attractions, activities & events for all ages. Discover top STL restaurants, hotels in St Louis, St Louis entertainment, St Louis museums & more unique locations. Saint Louis is the perfect Midwest vacation destination for the entire family.", + "visible_link": "https://explorestlouis.com", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g44881-Saint_Louis_Missouri-Vacations.html", + "title": "Saint Louis Tourism: Best of Saint Louis - …", + "snippet": "The history of St. Louis has been heavily influenced by Westward expansion and blues music. The big \"must-see\" in this region is the Gateway Arch, while other important sites include the Museum of Westward Expansion, the St. Louis Cathedral and the Anheuser-Busch factory tour.", + "visible_link": "www.tripadvisor.com › United States › Missouri (MO)", + "rank": 4 + }, + { + "link": "https://www.stlouis-mo.gov/", + "title": "City of St. Louis, MO: Official Website", + "snippet": "Feature Historic districts, Landmarks, Parks and Buildings The Cultural Resources Office (CRO) works with property owners, neighborhoods, City departments, public agencies and elected officials to preserve our City's historic and cultural heritage.", + "visible_link": "https://www.stlouis-mo.gov", + "rank": 5 + }, + { + "link": "https://de.wikipedia.org/wiki/Saint-Louis_(Haut-Rhin)", + "title": "Saint-Louis (Haut-Rhin) – Wikipedia", + "snippet": "Saint-Louis (deutsch Sankt Ludwig) ist eine französische Gemeinde im Département Haut-Rhin in der Region Grand Est (bis 2015 Elsass). Mit 20.642 Einwohnern (Stand 1.", + "visible_link": "https://de.wikipedia.org/wiki/Saint-Louis_(Haut-Rhin)", + "rank": 6 + }, + { + "link": "http://www.us-infos.de/mo-stlouis.html", + "title": "US-INFOS.DE: Tourtip St. Louis - Missouri", + "snippet": "Freizeitpark Der Freizeitpark Six Flags St. Louis zählt zu den kleineren der Six Flags-Kette. Neben dem Themenpark kann ein Wasserpark besucht werden.", + "visible_link": "www.us-infos.de/mo-stlouis.html", + "rank": 7 + } + ] + } + }, + "Cincinnati": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:11 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.900.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Cincinnati", + "title": "Cincinnati – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/Cincinnati", + "rank": 1 + }, + { + "link": "https://www.cincinnati.com/", + "title": "Cincinnati Enquirer | cincinnati.com", + "snippet": "Breaking Cincinnati news, traffic, weather and local headlines from The Cincinnati Enquirer newspaper.", + "visible_link": "https://www.cincinnati.com", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g60993-Cincinnati_Ohio-Vacations.html", + "title": "Cincinnati, OH: Tourismus in Cincinnati - TripAdvisor", + "snippet": "Die Lage Cincinnatis an einer Biegung des Ohio River und das hügelige Terrain tragen nicht unwesentlich zum Reiz dieser Stadt bei. Anders als der normalerweise flache Rest Ohios bieten die Steigungen und Hügel viele wunderbare Aussichten auf die Stadt.", + "visible_link": "www.tripadvisor.de › USA › Ohio (OH)", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g60993-Cincinnati_Ohio-Vacations.html", + "title": "Cincinnati 2019: Best of Cincinnati, OH Tourism - …", + "snippet": "Hilly Cincinnati boasts a thriving arts scene, major league sports teams, a world-class zoo and aquarium and a revitalized riverfront with shopping, clubs and restaurants.", + "visible_link": "www.tripadvisor.com › United States › Ohio (OH)", + "rank": 4 + }, + { + "link": "https://de.wikipedia.org/wiki/Cincinnati_(Schiff)", + "title": "Cincinnati (Schiff) – Wikipedia", + "snippet": "Die Cincinnati war ein Passagierschiff für den Nordatlantikdienst, das 1909 für die Hamburg-Amerikanische Packetfahrt-Actien-Gesellschaft (Hapag) in Dienst kam.", + "visible_link": "https://de.wikipedia.org/wiki/Cincinnati_(Schiff)", + "rank": 5 + }, + { + "link": "https://www.wetter.com/wetter_aktuell/wettervorhersage/16_tagesvorhersage/vereinigte_staaten_von_amerika/cincinnati/US0OH0193.html", + "title": "Wetter Cincinnati: 16 Tage Trend | wetter.com", + "snippet": "Der 16 Tage Wetter Trend für Cincinnati. Temperatur, Wetterzustand, Sonnenstunden und Regenwahrscheinlichkeit in der 16 Tagesübersicht.", + "visible_link": "www.wetter.com › Nordamerika › USA › Ohio › Cincinnati", + "rank": 6 + }, + { + "link": "http://cincinnati-muenchen.de/", + "title": "Cincinnati | Cineweb", + "snippet": "B/O/F/F Bayerisches Outdoor Filmfestival. Bayerisch und weltoffen zugleich – für das B/O/F/F nicht der geringste Widerspruch, denn das Festival-Format verbindet Liebe …", + "visible_link": "cincinnati-muenchen.de", + "rank": 7 + }, + { + "link": "https://www.cincinnati-oh.gov/cityofcincinnati/", + "title": "Home - City of Cincinnati", + "snippet": "The City of Cincinnati government is dedicated to maintaining the highest quality of life for the people of Cincinnati. The City is focused on economic development to create jobs, committed to innovation and efficiency through technology, seeks to be a leader in environmental sustainability, and pursues partnerships to help create opportunities ...", + "visible_link": "https://www.cincinnati-oh.gov/cityofcincinnati", + "rank": 8 + } + ] + } + }, + "Lincoln": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:14 GMT", + "no_results": false, + "effective_query": "", + "num_results": "16.100.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Abraham_Lincoln", + "title": "Abraham Lincoln – Wikipedia", + "snippet": "Kindheit und Jugend. Abraham Lincoln wurde in einer Blockhütte auf der Sinking Spring Farm nahe dem Dorf Hodgenville in Kentucky geboren. Seine Eltern waren der Farmer Thomas Lincoln und dessen Frau Nancy, die beide aus Virginia stammten.", + "visible_link": "https://de.wikipedia.org/wiki/Abraham_Lincoln", + "rank": 1 + }, + { + "link": "https://www.lincoln.com/", + "title": "Luxury Cars, Crossovers SUVs | The Lincoln Motor …", + "snippet": "The official website of The Lincoln Motor Company luxury vehicles including the Lincoln MKX, Continental and Navigator.", + "visible_link": "https://www.lincoln.com", + "rank": 2 + }, + { + "link": "https://suchen.mobile.de/auto/lincoln-berlin.html", + "title": "Lincoln Berlin Angebote bei mobile.de kaufen", + "snippet": "mobile.de: Lincoln Berlin kaufen. Finden Sie eine Vielzahl von günstigen Angeboten bei mobile.de - Deutschlands größter Fahrzeugmarkt", + "visible_link": "suchen.mobile.de › Suchen › Lincoln", + "rank": 3 + }, + { + "link": "https://gebrauchtwagen-suche.t-online.de/marke-lincoln/land-berlin/stadt-berlin", + "title": "Lincoln Gebrauchtwagen in Berlin - Lincoln als Jahreswagen ...", + "snippet": "Lincoln als Gebrauchtwagen in Berlin und Lincoln als Jahreswagen in Berlin im Gebrauchtwagenmarkt von t-online.de sowie News und Infos zu Gebrauchtwagen", + "visible_link": "gebrauchtwagen-suche.t-online.de › Auto", + "rank": 4 + }, + { + "link": "https://www.kayak.de/fl%C3%BCge/Lincoln-LNK/Berlin-BER", + "title": "Billigflüge von Lincoln nach Berlin ab 932 € | (LNK - BER ...", + "snippet": "Fliegen Sie von Lincoln nach Berlin mit Delta ab 932 €... Suchen und finden Sie Flug-Angebote nach Berlin.", + "visible_link": "www.kayak.de › Flüge › Weltweit › Nordamerika › USA", + "rank": 5 + }, + { + "link": "https://www.taschenkaufhaus.de/article/liebeskind-berlin-lincoln-314.30651.html", + "title": "Liebeskind Berlin Lincoln : Beuteltasche / Hobo Bag von ...", + "snippet": "Lincoln von Liebeskind Berlin : Das hat Liebeskind toll gemacht! Große Beuteltasche aus weichem Rindleder, passend für A4-Unterlagen, mit 4 Innenfächern, einem Schlüsselhalter und abnehmbarem Gurt. Maße: 39x38x11 cm.", + "visible_link": "https://www.taschenkaufhaus.de/article/liebeskind-berlin-lincoln...", + "rank": 6 + }, + { + "link": "https://www.lincoln.com/luxury-vehicles/", + "title": "Lincoln Luxury Vehicles - Sedans, Crossovers, and …", + "snippet": "See the entire 2018 lineup of Lincoln luxury vehicles along with future vehicles. Explore the Navigator, Continental, MKX, MKC, MKT, MKZ and more. Luxury exemplified, inside and out.", + "visible_link": "https://www.lincoln.com/luxury-vehicles", + "rank": 7 + }, + { + "link": "https://limos-berlin.de/", + "title": "LIMOS-BERLIN,Stretch Limo, Stretchlimousine günstig mieten ...", + "snippet": "Mieten Sie den amerikanischen Traum von luxuriösen Stretchlimousinen wie dem Chrysler 300C und das Lincoln Town Car .", + "visible_link": "https://limos-berlin.de", + "rank": 8 + }, + { + "link": "https://www.skf.com/de/products/lubrication-solutions/index.html", + "title": "Schmierungslösungen von SKF und Lincoln", + "snippet": "Wir von SKF verwenden Cookies auf unserer Website, um die angezeigten Informationen optimal auf die Interessen der Besucher abzustimmen, wie z. B. auf die bevorzugte Länder- oder Sprachwahl.", + "visible_link": "https://www.skf.com/de/products/lubrication-solutions/index.html", + "rank": 9 + }, + { + "link": "https://www.yorck.de/", + "title": "Yorck Kinos Berlin", + "snippet": "Favourite, The - Intrigen und Irrsinn. Exzessiv, entlarvend, erschreckend: Yorgos Lanthimos‘ (THE LOBSTER) bitterböses, brillantes und filmpreisüberhäuftes Sittenporträt über das bigotte britische Königshaus am Anfang des 18.", + "visible_link": "https://www.yorck.de", + "rank": 10 + } + ] + } + }, + "Chandler": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:17 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.500.000 Ergebnisse", + "results": [ + { + "link": "http://www.transfermarkt.de/timothy-chandler/profil/spieler/49723", + "title": "Timothy Chandler - Spielerprofil 18/19 | Transfermarkt", + "snippet": "Timothy Chandler ist ein 28-jähriger Fußballspieler aus Vereinigte Staaten, (* 29.03.1990 in Frankfurt am Main, Deutschland). Chandler spielt seit 2014 bei Eintracht Frankfurt (SGE). Er spielt ...", + "visible_link": "www.transfermarkt.de/timothy-chandler/profil/spieler/49723", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Raymond_Chandler", + "title": "Raymond Chandler – Wikipedia", + "snippet": "Raymond Thornton Chandler (* 23. Juli 1888 in Chicago, Illinois; † 26. März 1959 in La Jolla, Kalifornien) war ein US-amerikanischer Schriftsteller und gilt als einer …", + "visible_link": "https://de.wikipedia.org/wiki/Raymond_Chandler", + "rank": 2 + }, + { + "link": "https://de.wikipedia.org/wiki/Chandler", + "title": "Chandler – Wikipedia", + "snippet": "Dies ist eine Begriffsklärungsseite zur Unterscheidung mehrerer mit demselben Wort bezeichneter Begriffe.", + "visible_link": "https://de.wikipedia.org/wiki/Chandler", + "rank": 3 + }, + { + "link": "https://www.computerbild.de/download/Chandler-4154003.html", + "title": "Chandler 1.0.3 - Download - COMPUTER BILD", + "snippet": "Chandler 1.0.3 kostenlos in deutscher Version downloaden! Weitere virengeprüfte Software aus der Kategorie Office finden Sie bei computerbild.de!", + "visible_link": "https://www.computerbild.de/download/Chandler-4154003.html", + "rank": 4 + }, + { + "link": "https://www.vorname.com/name,Chandler.html", + "title": "Vorname Chandler: Herkunft, Bedeutung & Namenstag", + "snippet": "Chandler als Vorname Herkunft, Bedeutung & Namenstag im Überblick Alle Infos zum Namen Chandler auf Vorname.com entdecken!", + "visible_link": "https://www.vorname.com/name,Chandler.html", + "rank": 5 + }, + { + "link": "https://www.dict.cc/?s=chandler", + "title": "chandler | Übersetzung Englisch-Deutsch", + "snippet": "Kennst du Übersetzungen, die noch nicht in diesem Wörterbuch enthalten sind? Hier kannst du sie vorschlagen! Bitte immer nur genau eine Deutsch-Englisch-Übersetzung eintragen (Formatierung siehe Guidelines), möglichst mit einem guten Beleg im Kommentarfeld.", + "visible_link": "https://www.dict.cc/?s=chandler", + "rank": 6 + }, + { + "link": "https://chandlerlimited.com/", + "title": "Chandler Limited", + "snippet": "Together, Chandler Limited and Abbey Road Studios continue innovation with addition of TG Microphone. Shell Rock, IA – October 2018… Chandler Limited, the only company in the world authorized to develop, manufacture and market the ‘Official Equipment’ of EMI/Abbey Road …", + "visible_link": "https://chandlerlimited.com", + "rank": 7 + }, + { + "link": "http://www.chandler-shipping.de/de/offices/hamburg/", + "title": "» Hamburg - chandler-shipping.de", + "snippet": "Zentrale Niederlassung der Unternehmensgruppe Chandler. In der Zentrale wird die gesamte Palette der Transportdienstleistungen angeboten. Seit 2009 befindet sich hier …", + "visible_link": "www.chandler-shipping.de/de/offices/hamburg", + "rank": 8 + }, + { + "link": "https://en.wikipedia.org/wiki/Chandler,_Arizona", + "title": "Chandler, Arizona - Wikipedia", + "snippet": "Chandler is a city in Maricopa County, Arizona, United States, and a prominent suburb of the Phoenix, Arizona, Metropolitan Statistical Area (MSA).", + "visible_link": "https://en.wikipedia.org/wiki/Chandler,_Arizona", + "rank": 9 + } + ] + } + }, + "Winston-Salem": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:20 GMT", + "no_results": false, + "effective_query": "", + "num_results": "12.900.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Winston-Salem", + "title": "Winston-Salem – Wikipedia", + "snippet": "Winston-Salem ist eine Großstadt im Forsyth County im US-Bundesstaat North Carolina. Die Stadt ist die fünftgrößte des Bundesstaates und liegt in der Piedmont Triad Region.", + "visible_link": "https://de.wikipedia.org/wiki/Winston-Salem", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g49680-Activities-Winston_Salem_North_Carolina.html", + "title": "Beste Attraktionen in Winston Salem, NC - tripadvisor.de", + "snippet": "11.11.2018 Top 10 Winston Salem Sehenswürdigkeiten: Hier finden Sie 4.735 Bewertungen und Fotos von Reisenden über 88 Sehenswürdigkeiten, Touren und Ausflüge - …", + "visible_link": "www.tripadvisor.de › USA › North Carolina (NC) › Winston Salem", + "rank": 2 + }, + { + "link": "https://de.wikipedia.org/wiki/Winston-Salem_Open_2011", + "title": "Winston-Salem Open 2011 – Wikipedia", + "snippet": "Die Winston-Salem Open 2011 waren ein Tennisturnier, das vom 21. bis 27. August 2011 in Winston-Salem stattfand. Es war Teil der ATP World Tour 2011 und wurde im Freien auf Hartplatz ausgetragen.", + "visible_link": "https://de.wikipedia.org/wiki/Winston-Salem_Open_2011", + "rank": 3 + }, + { + "link": "https://de.wikivoyage.org/wiki/Winston-Salem", + "title": "Winston-Salem – Reiseführer auf Wikivoyage", + "snippet": "Winston-Salem ist seit 1875 Standort der R. J. Reynolds Tobacco Company, der zweitgrößten Tabakfirma der USA. Hier wurde u.a. die 1913 eingeführte Marke Camel produziert, die sich in der Folgezeit zu populärsten Marke der Welt entwickelte.", + "visible_link": "https://de.wikivoyage.org/wiki/Winston-Salem", + "rank": 4 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/winston_salem/US0NC0756.html", + "title": "Wetter Winston Salem | wetter.com", + "snippet": "In Winston Salem sollte den ganzen Tag der Schirm nicht vergessen werden, da es regnet bei Werten von 5°C. In der Nacht fällt Regen bei einer Temperatur von 6°C.", + "visible_link": "www.wetter.com › Nordamerika › USA › North Carolina", + "rank": 5 + }, + { + "link": "https://www.wetteronline.de/wetter/winston-salem", + "title": "Wetter Winston-Salem - aktuelle Wettervorhersage von ...", + "snippet": "Wetter Winston-Salem. Das Wetter für Winston-Salem im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Winston-Salem finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › US-Ostküste › North Carolina", + "rank": 6 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g49680-Winston_Salem_North_Carolina-Vacations.html", + "title": "Winston Salem 2019: Best of Winston Salem, NC …", + "snippet": "Winston Salem Tourism: TripAdvisor has 47,114 reviews of Winston Salem Hotels, Attractions, and Restaurants making it your best Winston Salem resource.", + "visible_link": "www.tripadvisor.com › United States › North Carolina (NC)", + "rank": 7 + }, + { + "link": "https://www.zeitzonen.de/usa/north-carolina/winston-salem.html", + "title": "Aktuelle Uhrzeit und Datum in Winston-Salem | USA - North ...", + "snippet": "Ok, danke. Cookies erleichtern die Bereitstellung unserer Dienste. Mit der Nutzung unserer Dienste erklären Sie sich damit einverstanden, dass wir Cookies verwenden.", + "visible_link": "https://www.zeitzonen.de/usa/north-carolina/winston-salem.html", + "rank": 8 + }, + { + "link": "https://en.wikipedia.org/wiki/Winston-Salem,_North_Carolina", + "title": "Winston-Salem, North Carolina - Wikipedia", + "snippet": "Winston-Salem is a city in and the county seat of Forsyth County, North Carolina, United States. With a 2019 estimated population of 247,222 it is the second largest municipality in the Piedmont Triad region, the fifth most populous city in North Carolina, and the eighty-ninth most populous city in the United States. With a metropolitan ...", + "visible_link": "https://en.wikipedia.org/wiki/Winston-Salem,_North_Carolina", + "rank": 9 + }, + { + "link": "http://www.winstonsalemopen.com/", + "title": "Winston-Salem Open | Home", + "snippet": "Volunteer with Us! More Information about Volunteer with Us! Medvedev 2018 Champion Does not drop a set Read More about Medvedev 2018 Champion Player Field Revealed See Who's Coming! about Player Field Revealed Apply for our 2019-2020 Internship Program!", + "visible_link": "www.winstonsalemopen.com", + "rank": 10 + } + ] + } + }, + "Baton Rouge": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:22 GMT", + "no_results": false, + "effective_query": "", + "num_results": "48.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Baton_Rouge", + "title": "Baton Rouge – Wikipedia", + "snippet": "Geschichte. Die ersten Europäer, die 1699 in das Gebiet vordrangen, auf dem sich heute die Stadt Baton Rouge befindet, waren Franzosen. Es handelte sich um eine aus 200 Franko-Kanadiern bestehende Forschungsexpedition unter der Führung von Pierre Le Moyne d’Iberville.", + "visible_link": "https://de.wikipedia.org/wiki/Baton_Rouge", + "rank": 1 + }, + { + "link": "https://www.batonrougeguitars.com/home.html", + "title": "BR: Home", + "snippet": "Your Gig At Musikmesse 2019. In diesem Jahr holen wir dich zur Musikmesse nach Frankfurt. Egal ob Singer/Songwriter oder Fingerpicker. Zeig uns was du mit deiner Baton Rouge alles so kannst, dann holen wir dich nach Frankfurt.", + "visible_link": "https://www.batonrougeguitars.com/home.html", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g40024-Activities-Baton_Rouge_Louisiana.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Baton Rouge 2019 (mit ...", + "snippet": "", + "visible_link": "www.tripadvisor.de › USA › Louisiana (LA) › Baton Rouge", + "rank": 3 + }, + { + "link": "https://www.baton-rouge.de/", + "title": "baton-rouge.de - Home - BR Mannheim", + "snippet": "Wenn man an die 90er Jahre denkt, denkt man automatisch an stundenlanges Warten mit dem Kassettenrekorder vor dem Radio, um den Lieblingssong aufzunehmen um ...", + "visible_link": "https://www.baton-rouge.de", + "rank": 4 + }, + { + "link": "https://www.thomann.de/de/baton_rouge.html", + "title": "Baton Rouge – Musikhaus Thomann", + "snippet": "Baton Rouge bei Thomann - Europas größtem Musikhaus. Alles versandkostenfrei, 30 Tage Money-Back und 3 Jahre Garantie.", + "visible_link": "https://www.thomann.de/de/baton_rouge.html", + "rank": 5 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g40024-Baton_Rouge_Louisiana-Vacations.html", + "title": "Baton Rouge, LA: Tourismus in Baton Rouge - TripAdvisor", + "snippet": "Auf TripAdvisor finden Sie alles für Baton Rouge, Louisiana: 55.899 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › USA › Louisiana (LA)", + "rank": 6 + }, + { + "link": "https://www.facebook.com/batonrouge.mannheim", + "title": "Baton Rouge - Home | Facebook", + "snippet": "Doch weniges hat die 90er so stark geprägt wie Musik! Und daher haben wir DJ HOLSH gebucht, um euch in diese Zeit \"zurück zu schicken\" >> BATON ROUGE Club", + "visible_link": "https://www.facebook.com/batonrouge.mannheim", + "rank": 7 + } + ] + } + }, + "San Bernardino": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:24 GMT", + "no_results": false, + "effective_query": "", + "num_results": "32.500.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/San_Bernardino_(Kalifornien)", + "title": "San Bernardino (Kalifornien) – Wikipedia", + "snippet": "San Bernardino ist eine Stadt im San Bernardino County im US-Bundesstaat Kalifornien, Vereinigte Staaten, mit 209.961 Einwohnern (letzte Volkszählung 2010) und Sitz der County-Verwaltung.", + "visible_link": "https://de.wikipedia.org/wiki/San_Bernardino_(Kalifornien)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/San-Bernardino-Pass", + "title": "San-Bernardino-Pass – Wikipedia", + "snippet": "x. Der San-Bernardino-Pass (dt. wenig gebräuchlich auch Sankt-Bernhardinpass oder kurz Sankt Bernhardin, ital. Passo del San Bernardino) ist ein Gebirgspass im schweizerischen Kanton Graubünden mit einer Scheitelhöhe von 2067 m ü. M. Er verbindet die Täler Rheinwald auf der nördlichen und Misox auf der südlichen Seite an der Hauptstrasse ...", + "visible_link": "https://de.wikipedia.org/wiki/San-Bernardino-Pass", + "rank": 2 + }, + { + "link": "https://www.myswitzerland.com/de/san-bernardino.html", + "title": "San Bernardino | Schweiz Tourismus", + "snippet": "Sommer. Durch die raue Berglandschaft am San Bernardino führen zahlreiche Wanderwege, darunter ein Themenweg zu den natürlichen, kulturellen und historischen Besonderheiten der Gegend.", + "visible_link": "https://www.myswitzerland.com/de/san-bernardino.html", + "rank": 3 + }, + { + "link": "https://www.wetter.de/schweiz/wetter-san-bernardino-18130908.html", + "title": "Wetter San Bernardino - Wettervorhersage für San ...", + "snippet": "Aktuelles Wetter für San Bernardino . Die aktuelle Wettervorhersage stundengenau für heute und die nächsten 15 Tage für San Bernardino.", + "visible_link": "www.wetter.de › Welt › Europa › Schweiz", + "rank": 4 + }, + { + "link": "http://www.insidertipps-italien.com/index_san_bernardino.htm", + "title": "San Bernardino: San Bernardino Tunnel Maut – San ...", + "snippet": "Der San Bernardino Tunnel in der Ost-Schweiz ist gemeinsam mit der Brennerautobahn und dem Gotthard Tunnel eine der wichtigsten Nord-Süd-Verbindungen über die Alpen nach Italien.", + "visible_link": "www.insidertipps-italien.com/index_san_bernardino.htm", + "rank": 5 + }, + { + "link": "https://en.wikipedia.org/wiki/San_Bernardino,_California", + "title": "San Bernardino, California - Wikipedia", + "snippet": "", + "visible_link": "https://en.wikipedia.org/wiki/San_Bernardino,_California", + "rank": 6 + }, + { + "link": "http://www.quaeldich.de/paesse/san-bernardino-pass/", + "title": "San-Bernardino-Pass (2065 m) Passo del San Bernardino", + "snippet": "Der San-Bernardino-Pass verbindet das Misox mit dem Hinterrheintal. Durch die parallel zur Kantonsstraße verlaufenden Autobahn, die den Großteil des Schwerverkehrs aufnimmt, ist dieser Pass auf beiden Seiten angenehm verkehrsarm.", + "visible_link": "www.quaeldich.de/paesse/san-bernardino-pass", + "rank": 7 + } + ] + } + }, + "Chicago": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:46 GMT", + "no_results": false, + "effective_query": "", + "num_results": "22.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Chicago", + "title": "Chicago – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/Chicago", + "rank": 1 + }, + { + "link": "https://wikitravel.org/de/Chicago", + "title": "Chicago – Wikitravel", + "snippet": "Chicago ist für seine Architektur weltberühmt. Nach dem Großbrand 1871 ist der Großteil der Stadt in den 30iger Jahren des letzten Jahrhunderts wieder aufgebaut worden.", + "visible_link": "https://wikitravel.org/de/Chicago", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g35805-Chicago_Illinois-Vacations.html", + "title": "Chicago, IL: Tourismus in Chicago - TripAdvisor", + "snippet": "Auf TripAdvisor finden Sie alles für Chicago, Illinois: 1.022.602 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › USA › Illinois (IL)", + "rank": 3 + }, + { + "link": "https://www.choosechicago.com/", + "title": "Chicago Things to Do, Events, Restaurants, Hotels ...", + "snippet": "There are plenty of fun things to do in Chicago and we're here to help you plan your next vacation or business trip to our fair city. Explore the official tourism website for Chicago and find guides to events, attractions, restaurants, hotels, getting around the city and other vacation planning help.", + "visible_link": "https://www.choosechicago.com", + "rank": 4 + }, + { + "link": "https://de.wikipedia.org/wiki/Chicago_(Band)", + "title": "Chicago (Band) – Wikipedia", + "snippet": "Chicago ist eine US-amerikanische Jazzrock-Band, die 1967 in Chicago gegründet wurde. Chicago war eine der ersten Bands, die eine Bläsergruppe integrierte und damit dem rockigen Basisklang eine jazzige Klangfarbe hinzufügte.", + "visible_link": "https://de.wikipedia.org/wiki/Chicago_(Band)", + "rank": 5 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g35805-Chicago_Illinois-Vacations.html", + "title": "Chicago 2019: Best of Chicago, IL Tourism - …", + "snippet": "Chicago Tourism: TripAdvisor has 1,023,136 reviews of Chicago Hotels, Attractions, and Restaurants making it your best Chicago resource.", + "visible_link": "www.tripadvisor.com › United States › Illinois (IL)", + "rank": 6 + }, + { + "link": "https://simple.wikipedia.org/wiki/Chicago", + "title": "Chicago - Simple English Wikipedia, the free …", + "snippet": "Chicago has a very well-known culture. Some of the many things Chicago is famous for are: Chicago-style hot dogs, Chicago-style (deep dish) pizza, Maxwell Street Polish Sausage, jazz music, and 1920s gangsters like Al Capone.", + "visible_link": "https://simple.wikipedia.org/wiki/Chicago", + "rank": 7 + }, + { + "link": "https://www.spektrum.de/news/chicago-ist-kaelter-als-gipfel-des-mount-everest/1621184", + "title": "Wetter: Chicago ist kälter als Gipfel des Mount Everest ...", + "snippet": "Bis zu minus 34 Grad Celsius werden in Chicago erwartet. Damit es dort kälter als in Teilen der Arktis oder auf dem Gipfel des Mount Everest. Der Windchill ...", + "visible_link": "www.spektrum.de › Erde/Umwelt", + "rank": 8 + } + ] + } + }, + "San Jose": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:49 GMT", + "no_results": false, + "effective_query": "", + "num_results": "90.600.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/San_Jos%C3%A9_(Kalifornien)", + "title": "San José (Kalifornien) – Wikipedia", + "snippet": "San José [ˌsænhoʊˈzeɪ] (amerikanisiert zu San Jose) ist eine Stadt in Kalifornien mit dem Sitz der County-Verwaltung des Santa Clara County.", + "visible_link": "https://de.wikipedia.org/wiki/San_José_(Kalifornien)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/San_Jos%C3%A9_(Costa_Rica)", + "title": "San José (Costa Rica) – Wikipedia", + "snippet": "San José (deutsch Sankt Josef) ist die Hauptstadt des mittelamerikanischen Staates Costa Rica und hat rund 340.000 Einwohner. Außerdem ist es die Hauptstadt der gleichnamigen Provinz San José und die größte Stadt des Landes.", + "visible_link": "https://de.wikipedia.org/wiki/San_José_(Costa_Rica)", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g33020-Activities-San_Jose_California.html", + "title": "2019 DIE TOP 10 Sehenswürdigkeiten in San Jose Februar ...", + "snippet": "", + "visible_link": "www.tripadvisor.de › USA › Kalifornien › San Jose", + "rank": 3 + }, + { + "link": "https://www.sanjoseca.gov/", + "title": "San Jose, CA - Official Website", + "snippet": "The City of San José is committed to open and honest government and strives to consistently meet the community’s expectations by providing excellent service, in a positive and timely manner, and in the full view of the public.", + "visible_link": "https://www.sanjoseca.gov", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g33020-San_Jose_California-Vacations.html", + "title": "San Jose 2019: Best of San Jose, CA Tourism - …", + "snippet": "Welcome to bustling San Jose, where Silicon Valley meets Spanish history and modern edifices sit alongside meticulously restored 19th-century buildings.", + "visible_link": "www.tripadvisor.com › United States › California (CA)", + "rank": 5 + }, + { + "link": "https://www.holidaycheck.de/dh/hotels-san-jose/e059b745-c741-3e29-9930-8b0af0c685d8", + "title": "Hotels San Jose - holidaycheck.de", + "snippet": "TOP Hotel San Jose Jetzt die besten & günstigsten San Jose Hotels finden 100€ Gutschein GRATIS Hotline Bestpreis-Garantie Hotelbewertungen Preisvergleich Jetzt günstig Urlaub buchen", + "visible_link": "www.holidaycheck.de › … › Costa Rica › Sonstiges Costa Rica", + "rank": 6 + }, + { + "link": "https://www.lonelyplanet.com/costa-rica/san-jose", + "title": "San José travel | Costa Rica - Lonely Planet", + "snippet": "Chances are San José wasn't the top destination on your list when you started planning your Costa Rica trip, but give this city a chance and you might be pleasantly surprised.", + "visible_link": "https://www.lonelyplanet.com/costa-rica/san-jose", + "rank": 7 + } + ] + } + }, + "Fort Worth": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:51 GMT", + "no_results": false, + "effective_query": "", + "num_results": "73.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Fort_Worth", + "title": "Fort Worth – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/Fort_Worth", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g55857-Activities-Fort_Worth_Texas.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Fort Worth Februar 2019 ...", + "snippet": "21.02.2019 Top 10 Fort Worth Sehenswürdigkeiten: Hier finden Sie 25.896 Bewertungen und Fotos von Reisenden über 172 Sehenswürdigkeiten, Touren und Ausflüge - alle Fort Worth Aktivitäten auf …", + "visible_link": "www.tripadvisor.de › USA › Texas (TX) › Fort Worth", + "rank": 2 + }, + { + "link": "https://www.fortworth.com/", + "title": "Fort Worth | Hotels, Restaurants, Maps, Things to …", + "snippet": "Fort Worth welcomes visitors from around the world to experience the great American West and rich arts and culinary treasures. There are more than 92 attractions in a 10-mile radius of downtown.", + "visible_link": "https://www.fortworth.com", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g55857-Fort_Worth_Texas-Vacations.html", + "title": "Fort Worth, TX: Tourismus in Fort Worth - TripAdvisor", + "snippet": "Fort Worth ist das Tor zum Wilden Westen. Im Stockyards National Historic District wird mit dem zweitäglichen Viehtrieb in freier Wildbahn das Erbe des Wilden Westens wieder lebendig.", + "visible_link": "www.tripadvisor.de › USA › Texas (TX)", + "rank": 4 + }, + { + "link": "https://www.wetter.com/wetter_aktuell/wettervorhersage/16_tagesvorhersage/vereinigte_staaten_von_amerika/fort_worth/US0TX0468.html", + "title": "Wetter Fort Worth: 16 Tage Trend | wetter.com", + "snippet": "Wetter heute, 19.02.2019 In Fort Worth regnet es morgens und die Temperatur liegt bei 4°C. Am Mittag sollte der Schirm nicht vergessen werden, da es regnet bei Höchstwerten von 5°C.", + "visible_link": "www.wetter.com › Nordamerika › USA › Texas › Fort Worth", + "rank": 5 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g55857-Activities-Fort_Worth_Texas.html", + "title": "THE 15 BEST Things to Do in Fort Worth - …", + "snippet": "Book your tickets online for the top things to do in Fort Worth, Texas on TripAdvisor: See 25,906 traveler reviews and photos of Fort Worth tourist attractions. Find what to do today, this weekend, or in March. We have reviews of the best places to see in Fort Worth. Visit top-rated & must-see attractions.", + "visible_link": "www.tripadvisor.com › United States › Texas (TX) › Fort Worth", + "rank": 6 + }, + { + "link": "https://en.wikipedia.org/wiki/Fort_Worth,_Texas", + "title": "Fort Worth, Texas - Wikipedia", + "snippet": "Fort Worth is the 15th-largest city in the United States and the fifth-largest city in the state of Texas. It is the county seat of Tarrant County, covering nearly 350 square miles (910 km 2) into four other counties: Denton, Johnson, Parker and Wise.", + "visible_link": "https://en.wikipedia.org/wiki/Fort_Worth,_Texas", + "rank": 7 + } + ] + } + }, + "Boston": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:55 GMT", + "no_results": false, + "effective_query": "", + "num_results": "19.700.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Boston", + "title": "Boston – Wikipedia", + "snippet": "Boston [ˈbɔstən] ist die größte Stadt in Neuengland und Hauptstadt des Bundesstaates Massachusetts an der Ostküste der Vereinigten Staaten. Die Metropole ist eine der ältesten, wohlhabendsten und kulturell reichsten Städte der USA.", + "visible_link": "https://de.wikipedia.org/wiki/Boston", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g60745-Boston_Massachusetts-Vacations.html", + "title": "Boston, MA: Tourismus in Boston - TripAdvisor", + "snippet": "Gönnen Sie sich bei Ihrem ersten Besuch in Boston ein wenig Zeit, um den Freedom Trail entlang zu wandern. Dabei erfahren Sie viel über die beeindruckende Geschichte dieser Küstenstadt und lernen sie von ihrer revolutionären Seite kennen.", + "visible_link": "www.tripadvisor.de › USA › Massachusetts (MA)", + "rank": 2 + }, + { + "link": "https://www.wetteronline.de/wetter/boston", + "title": "Wetter Boston - aktuelle Wettervorhersage von WetterOnline", + "snippet": "Wetter Boston. Das Wetter für Boston im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Boston finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › US-Ostküste › Massachusetts", + "rank": 3 + }, + { + "link": "https://www.lonelyplanet.com/usa/boston", + "title": "Boston travel | USA - Lonely Planet", + "snippet": "Boston's history recalls revolution and transformation, and today it is still among the country’s most forward-thinking and barrier-breaking cities.", + "visible_link": "https://www.lonelyplanet.com/usa/boston", + "rank": 4 + }, + { + "link": "https://www.youtube.com/watch?v=SSR6ZzjDZ94", + "title": "Boston - More Than A Feeling - YouTube", + "snippet": "01.02.2008 · I looked out this morning and the sun was gone Turned on some music to start my day I lost myself in a familiar song I closed my eyes and I slipped away", + "visible_link": "https://www.youtube.com/watch?v=SSR6ZzjDZ94", + "rank": 5 + }, + { + "link": "https://www.cinema.de/film/boston,8595688.html", + "title": "Boston - Film | cinema.de", + "snippet": "Boston Police Commissioner Ed Davis' Beobachtungen jenes Tages, den Boston nie vergessen wird: den des Attentates auf den Marathonlauf.", + "visible_link": "www.cinema.de › Film", + "rank": 6 + }, + { + "link": "https://simple.wikipedia.org/wiki/Boston", + "title": "Boston - Simple English Wikipedia, the free …", + "snippet": "Boston has a culture that is quite similar to New England, such as a New England accent and foods that are mostly seafood, salt, and dairy products.", + "visible_link": "https://simple.wikipedia.org/wiki/Boston", + "rank": 7 + }, + { + "link": "https://www.nba.com/celtics/", + "title": "Boston Celtics | The Official Site of the Boston …", + "snippet": "The official site of the Boston Celtics. Includes news, scores, schedules, statistics, photos and video.", + "visible_link": "https://www.nba.com/celtics", + "rank": 8 + }, + { + "link": "https://en.wikipedia.org/wiki/Boston_(band)", + "title": "Boston (band) - Wikipedia", + "snippet": "Boston is an American rock band from Boston, Massachusetts, who had their most notable successes during the 1970s and 1980s. Centered on multi-instrumentalist founder and leader Tom Scholz, who played the majority of instruments on the debut album, the band is a staple of classic rock radio playlists. Boston's best-known works include the songs ...", + "visible_link": "https://en.wikipedia.org/wiki/Boston_(band)", + "rank": 9 + } + ] + } + }, + "Milwaukee": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:57 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.milwaukeetool.eu/", + "title": "Milwaukee Tool Germany | Akkugeräte, Kabelgeführte Geräte ...", + "snippet": "Milwaukee Electric Tool Corp. is an industry-leading manufacturer and marketer of heavy-duty, portable electric power tools and accessories for professional users worldwide.", + "visible_link": "https://de.milwaukeetool.eu", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Milwaukee", + "title": "Milwaukee – Wikipedia", + "snippet": "Milwaukee [ˌmɪlˈwɑːki] ist die größte Stadt im US-amerikanischen Bundesstaat Wisconsin. Im Jahr 2016 hatte die Stadt 595.047 Einwohner. Milwaukee ist das Zentrum der Metropolregion Milwaukee, die mit über 1,7 Millionen Einwohnern den größten Ballungsraum in Wisconsin bildet.", + "visible_link": "https://de.wikipedia.org/wiki/Milwaukee", + "rank": 2 + }, + { + "link": "https://wikitravel.org/de/Milwaukee", + "title": "Milwaukee – Wikitravel", + "snippet": "Milwaukee ist die größte Stadt im US-Bundesstatt Wisconsin. Die Stadt hat 602.782 Einwohner, im Großraum Milwaukee wohnen 1.689.572 Menschen (2006). Die Stadt Milwaukee ist die 22. größte Stadt in den Vereinigten Staaten und liegt am westlichen Ufer des Michigansees.", + "visible_link": "https://wikitravel.org/de/Milwaukee", + "rank": 3 + }, + { + "link": "https://www.ebay.de/b/Milwaukee-Akkus-fur-Elektrowerkzeuge/122840/bn_13041358", + "title": "Milwaukee Akkus für Elektrowerkzeuge günstig kaufen | eBay", + "snippet": "Entdecken Sie die große Vielfalt an Angeboten für Milwaukee Akkus für Elektrowerkzeuge. Riesen-Auswahl führender Marken zu günstigen Preisen online bei eBay kaufen!", + "visible_link": "https://www.ebay.de/b/Milwaukee-Akkus-fur-Elektrowerkzeuge/122840/...", + "rank": 4 + }, + { + "link": "https://www.milwaukeetool.eu/", + "title": "Milwaukee Tool Europe | Power Tools, Hand Tools ...", + "snippet": "Milwaukee Electric Tool Corp. is an industry-leading manufacturer and marketer of heavy-duty, portable electric power tools and accessories for professional users worldwide.", + "visible_link": "https://www.milwaukeetool.eu", + "rank": 5 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/milwaukee/US0WI0452.html", + "title": "Wetter Milwaukee | wetter.com", + "snippet": "In Milwaukee kommt es vormittags und auch am Nachmittag zu Schneefällen bei Temperaturen von -1 bis 1°C. Am Abend regnet es in Milwaukee bei Temperaturen von -1°C.", + "visible_link": "www.wetter.com › Nordamerika › USA › Wisconsin", + "rank": 6 + }, + { + "link": "https://www.milwaukeetool.com/", + "title": "Milwaukee® Tool Official Site | Nothing but …", + "snippet": "You have successfully signed up to receive an email about special offers, new products, and events!", + "visible_link": "https://www.milwaukeetool.com", + "rank": 7 + }, + { + "link": "https://de.milwaukeetool.eu/header/ihr-milwaukee-service/reparaturservice/", + "title": "Reparaturservice | Milwaukee Tools", + "snippet": "Heavy Duty ist bei Milwaukee ® mehr als nur ein Slogan. Es ist ein Versprechen, professionellen Anwendern das Beste zu bieten. Unsere Ingenieure entwickeln nicht einfach nur.", + "visible_link": "https://de.milwaukeetool.eu/header/ihr-milwaukee-service/reparatur...", + "rank": 8 + }, + { + "link": "https://www.milwaukeetool.com/Products/Power-Tools", + "title": "M18 and M12 FUEL Power Tools and Equipment | …", + "snippet": "Shop heavy duty power tools including drilling, fastening, electrical, plumbing, metal and woodworking tools and more.", + "visible_link": "https://www.milwaukeetool.com/Products/Power-Tools", + "rank": 9 + }, + { + "link": "https://www.werkzeugforum.de/thema/hersteller/milwaukee/", + "title": "Milwaukee - werkzeugforum.dewerkzeugforum.de", + "snippet": "Die 18 Volt Tischkreissäge FUEL M18 FTS210 von Milwaukee erreicht Schnittleistungen wie ein Kabelgerät – bei praxistauglichen Einsatzzeiten dank eines Akkus mit 12 Amperestunden Kapazität.", + "visible_link": "https://www.werkzeugforum.de/thema/hersteller/milwaukee", + "rank": 10 + } + ] + } + }, + "Mesa": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:00 GMT", + "no_results": false, + "effective_query": "", + "num_results": "44.400.000 Ergebnisse", + "results": [ + { + "link": "http://mesaberlin.de/", + "title": "Mesa Berlin", + "snippet": "Libanesische Küche in Berlin ... welcome ...", + "visible_link": "mesaberlin.de", + "rank": 1 + }, + { + "link": "https://www.berlin.de/restaurants/adressen/libanesisches-restaurant/mesa-0d1ab041fbae2cc0a7f4503ae97c353a.html", + "title": "Mesa :: Libanesisches Restaurant – Berlin.de", + "snippet": "‚Mesa‘ kommt aus dem Libanesischen und bedeutet so viel wie ‚naschen‘. Und genau das wird hier ausgiebig zelebriert. Viele kleine Köstlichkeiten wie Hummus, Taboulé und Falafel kommen gemeinsam auf den Tisch und werden traditionell geteilt. „Die libanesische gilt als die beste arabische", + "visible_link": "https://www.berlin.de/.../mesa-0d1ab041fbae2cc0a7f4503ae97c353a.html", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Restaurant_Review-g187323-d718214-Reviews-Mesa-Berlin.html", + "title": "Mesa, Berlin - Charlottenburg-Wilmersdorf (Bezirk ...", + "snippet": "Nach langer Zeit mal wieder dort gewesen und wie immer begeistert. Haben einfach Mesa für 5 bestellt und eine leckere und abwechslungsreiche Auswahl an …", + "visible_link": "www.tripadvisor.de › … › Berlin › Restaurants Berlin - Bewertungen", + "rank": 3 + }, + { + "link": "https://www.stw.berlin/mensen.html", + "title": "studierendenWERK BERLIN - Mensen", + "snippet": "Es konnten keine Ergebnisse für den Suchbegriff \"\" gefunden werden. Bitte versuchen Sie es mit allgemeineren Suchbegriffen, um mehr Ergebnisse zu erhalten.", + "visible_link": "https://www.stw.berlin/mensen.html", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.de/Restaurant_Review-g187323-d1230425-Reviews-Mesa-Berlin.html", + "title": "mesa, Berlin - Mitte (Bezirk) - Restaurant Bewertungen ...", + "snippet": "mesa, Berlin: 188 Bewertungen von mesa sehen, mit 4 von 5 bewertet und eines der 8.078 Restaurants in Berlin bei TripAdvisor.", + "visible_link": "www.tripadvisor.de › … › Berlin › Restaurants Berlin - Bewertungen", + "rank": 5 + }, + { + "link": "https://www.stw.berlin/mensen/mensa-hu-nord.html", + "title": "studierendenWERK BERLIN - Mensa HU Nord", + "snippet": "Die Mensa HU Nord in der Hannoverschen Straße ist eine moderne Mensa im Einzugsgebiet der Humboldt-Universität Berlin.", + "visible_link": "https://www.stw.berlin/mensen/mensa-hu-nord.html", + "rank": 6 + }, + { + "link": "http://www.messe-berlin.de/", + "title": "Messe Berlin - Startseite", + "snippet": "Die Messe Berlin bietet ein sehr vielfältiges Messeprogramm: Über 100 nationale und internationale Veranstaltungen finden jährlich auf den Berliner Messegeländen statt.", + "visible_link": "www.messe-berlin.de", + "rank": 7 + }, + { + "link": "https://www.meso-berlin.de/", + "title": "Individuelle Reisen weltweit - MESO Reisen", + "snippet": "Weltweite Reisen individuell zusammenstellen. MESO Reisen Ihr Reiseveranstalter für Fernreisen.", + "visible_link": "https://www.meso-berlin.de", + "rank": 8 + }, + { + "link": "https://www.messen.de/de/106/in/deutschland/berlin/berlin/uebersicht", + "title": "Messe Berlin Termine | Messen Berlin 2019/2020 ...", + "snippet": "Messe in Berlin: Gesamtübersicht aller Messen in Berlin aus sämtlichen Bereichen der Wirtschaft und des Handels mit Messebewertungen und allen Informationen.", + "visible_link": "https://www.messen.de/de/106/in/deutschland/berlin/berlin/uebersicht", + "rank": 9 + }, + { + "link": "https://www.hyatt.com/en-US/hotel/germany/grand-hyatt-berlin/bergh/dining", + "title": "Best restaurants in Berlin Germany | Vox, Tizian …", + "snippet": "Savour the exceptional restaurants at Grand Hyatt Berlin in the city centret. Enjoy fabulous cuisine at Vox Restaurant & Bar, Tizian Lounge, and Jamboree Bar.", + "visible_link": "https://www.hyatt.com/en-US/hotel/germany/grand-hyatt-berlin/bergh/...", + "rank": 10 + } + ] + } + }, + "Oakland": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:02 GMT", + "no_results": false, + "effective_query": "", + "num_results": "14.600.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Oakland", + "title": "Oakland – Wikipedia", + "snippet": "Die Stadt Oakland [ˈoʊklənd] im US-Bundesstaat Kalifornien am östlichen Ufer der Bucht von San Francisco gelegen, ist Sitz der Bezirksverwaltung des Alameda County.", + "visible_link": "https://de.wikipedia.org/wiki/Oakland", + "rank": 1 + }, + { + "link": "https://wikitravel.org/de/Oakland", + "title": "Oakland – Wikitravel", + "snippet": "Oakland Zoo (Oakland Zoo in Knowland Park), 9777 Golf Links Rd, Oakland, CA 94605, Telefon: 510-632-9523. Der preisgekrönte Oakland Zoo im 525 Morgen grossen Knowland Park präsentiert über 300 exotische Tiere, viele in den natürlichen Lebensräumen.", + "visible_link": "https://wikitravel.org/de/Oakland", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g32810-Activities-Oakland_California.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Oakland 2019 (mit fotos ...", + "snippet": "18.02.2019 Top 10 Oakland Sehenswürdigkeiten: Hier finden Sie 232.868 Bewertungen und Fotos von Reisenden über 209 Sehenswürdigkeiten, Touren und Ausflüge - alle Oakland Aktivitäten auf einen Blick.", + "visible_link": "www.tripadvisor.de › USA › Kalifornien › Oakland", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/Oakland_(Maine)", + "title": "Oakland (Maine) – Wikipedia", + "snippet": "Oakland ist eine Town im Kennebec County des Bundesstaates Maine in den Vereinigten Staaten. Im Jahr 2010 lebten dort 6240 Einwohner in 2543 Haushalten auf einer Fläche von 72,96 km².", + "visible_link": "https://de.wikipedia.org/wiki/Oakland_(Maine)", + "rank": 4 + }, + { + "link": "https://www.oaklandca.gov/", + "title": "City of Oakland | Homepage", + "snippet": "The official website of the City of Oakland. Find out about meetings, request City services through OAK 311, or contact the Mayor and City Council.", + "visible_link": "https://www.oaklandca.gov", + "rank": 5 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g32810-Oakland_California-Vacations.html", + "title": "Oakland 2019: Best of Oakland, CA Tourism - …", + "snippet": "Oakland, in the hub of the Bay Area, is both historic and modern. Visitors will find a little bit of everything in this diverse metropolis, from the picturesque waterfront to expansive hills.", + "visible_link": "www.tripadvisor.com › United States › California (CA)", + "rank": 6 + }, + { + "link": "https://shop.bild.de/oakland-raiders/", + "title": "Oakland Raiders - shop.bild.de", + "snippet": "OAKLAND RAIDERS - Shirts & Fashion und mehr des NFL-Teams aus dem sonnigen Kalifornien! Sicher Günstig Online", + "visible_link": "shop.bild.de › Fanshop › US Sports › NFL", + "rank": 7 + }, + { + "link": "https://en.wikipedia.org/wiki/Oakland,_California", + "title": "Oakland, California - Wikipedia", + "snippet": "Oakland is the largest city and the county seat of Alameda County, California, United States. A major West Coast port city, Oakland is the largest city in the East Bay region of the San Francisco Bay Area, the third largest city overall in the San Francisco Bay Area, the eighth most populated city in California, and the 45th largest ...", + "visible_link": "https://en.wikipedia.org/wiki/Oakland,_California", + "rank": 8 + }, + { + "link": "https://www.mlb.com/athletics", + "title": "Official Oakland Athletics Website | MLB.com", + "snippet": "The official website of the Oakland Athletics with the most up-to-date information on scores, schedule, stats, tickets, and team news.", + "visible_link": "https://www.mlb.com/athletics", + "rank": 9 + }, + { + "link": "https://en.wikipedia.org/wiki/Oakland_(Pittsburgh)", + "title": "Oakland (Pittsburgh) - Wikipedia", + "snippet": "Oakland is the academic and healthcare center of Pittsburgh and one of the city's major cultural centers. The neighborhood is home to three universities, museums, and hospitals, as well as an abundance of shopping, restaurants, and recreational activities.", + "visible_link": "https://en.wikipedia.org/wiki/Oakland_(Pittsburgh)", + "rank": 10 + } + ] + } + }, + "Bakersfield": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:06 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.600.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Bakersfield", + "title": "Bakersfield – Wikipedia", + "snippet": "Bakersfield ist eine Stadt im Kern County im US-Bundesstaat Kalifornien mit 347.609 Einwohnern (letzte Volkszählung 2010). Das Stadtgebiet umfasst eine Fläche von 363,96 Quadratkilometern.", + "visible_link": "https://de.wikipedia.org/wiki/Bakersfield", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g32037-Activities-Bakersfield_California.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Bakersfield 2019 (mit ...", + "snippet": "18.02.2019 Top 10 Bakersfield Sehenswürdigkeiten: Hier finden Sie 2.182 Bewertungen und Fotos von Reisenden über 43 Sehenswürdigkeiten, Touren und Ausflüge - alle Bakersfield …", + "visible_link": "www.tripadvisor.de › USA › Kalifornien › Bakersfield", + "rank": 2 + }, + { + "link": "https://wikitravel.org/de/Bakersfield", + "title": "Bakersfield – Wikitravel", + "snippet": "Bakersfield liegt in Kalifornien in der Höhe von 124m und hat 174.820 Einwohner. Hintergrund . Bakersfield liegt 179 km von Los Angeles und ungefähr 465 km von San Francisco entfernt.", + "visible_link": "https://wikitravel.org/de/Bakersfield", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g32037-Bakersfield_California-Vacations.html", + "title": "Bakersfield, Kalifornien: Tourismus in Bakersfield ...", + "snippet": "Auf TripAdvisor finden Sie alles für Bakersfield, Kalifornien: 34.255 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › USA › Kalifornien", + "rank": 4 + }, + { + "link": "https://en.wikipedia.org/wiki/Bakersfield,_California", + "title": "Bakersfield, California - Wikipedia", + "snippet": "Bakersfield is a city and the county seat of Kern County, California, United States. It covers about 142 square miles (370 km 2) near the southern end of the San Joaquin Valley and the Central Valley region.", + "visible_link": "https://en.wikipedia.org/wiki/Bakersfield,_California", + "rank": 5 + }, + { + "link": "https://www.wetteronline.de/wetter/bakersfield", + "title": "Wetter Bakersfield - aktuelle Wettervorhersage von ...", + "snippet": "Wetter Bakersfield. Das Wetter für Bakersfield im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Bakersfield finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › US-Westküste › Kalifornien", + "rank": 6 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/bakersfield/US5325738.html", + "title": "Wetter Bakersfield | wetter.com", + "snippet": "In Bakersfield ist es tagsüber wolkenlos und die Temperaturen liegen zwischen 2 und 10°C. Nachts gibt es einen wolkenlosen Himmel bei einer Temperatur von 2°C.", + "visible_link": "www.wetter.com › Nordamerika › USA › Kalifornien", + "rank": 7 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g32037-Bakersfield_California-Vacations.html", + "title": "Bakersfield 2019: Best of Bakersfield, CA Tourism ...", + "snippet": "Bakersfield Tourism: TripAdvisor has 34,298 reviews of Bakersfield Hotels, Attractions, and Restaurants making it your best Bakersfield resource.", + "visible_link": "www.tripadvisor.com › United States › California (CA)", + "rank": 8 + }, + { + "link": "https://www.wetteronline.de/wettertrend/bakersfield", + "title": "14-Tage-Wetter Bakersfield - WetterOnline", + "snippet": "Wetterbericht Bakersfield. In den nächsten Tagen scheint die Sonne im Raum Bakersfield von einem nahezu wolkenlosen Himmel - schönes Wetter also.", + "visible_link": "www.wetteronline.de › … › Kalifornien › Bakersfield", + "rank": 9 + }, + { + "link": "https://www.mapquest.com/us/california/bakersfield-ca-282040241", + "title": "Bakersfield, CA - Bakersfield, California Map & …", + "snippet": "Bakersfield is a city near the southern end of the San Joaquin Valley in Kern County, California. It is roughly equidistant between Fresno and Los Angeles, 110 mi (180 km) to …", + "visible_link": "https://www.mapquest.com/us/california/bakersfield-ca-282040241", + "rank": 10 + } + ] + } + }, + "Riverside": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:09 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.300.000 Ergebnisse", + "results": [ + { + "link": "http://www.riverside-mitte.de/de/", + "title": "Home | Riverside Hotel", + "snippet": "Located alongside the bank of the Spree River and at Berlin, Germany's central point, you'll find yourself immersed in the wonder of Berlin at the Riverside Hotel.", + "visible_link": "www.riverside-mitte.de/de", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Hotel_Review-g187323-d269204-Reviews-Riverside_Hotel-Berlin.html", + "title": "Riverside City Hotel, Berlin - tripadvisor.de", + "snippet": "Hotel Riverside City, Berlin: 85 Bewertungen, 73 authentische Reisefotos und günstige Angebote für Hotel Riverside City. Bei TripAdvisor auf Platz 421 von 637 Hotels in …", + "visible_link": "www.tripadvisor.de › … › Deutschland › Berlin › Hotels Berlin", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Hotel_Review-g187323-d2531341-Reviews-Riverside_Hotel-Berlin.html", + "title": "RIVERSIDE HOTEL: Bewertungen & Fotos (Berlin) - TripAdvisor", + "snippet": "Hotel Riverside, Berlin: 14 Bewertungen, 21 authentische Reisefotos und günstige Angebote für Hotel Riverside. Bei TripAdvisor auf Platz 451 von 637 Hotels in Berlin mit 3,5/5 von Reisenden bewertet.", + "visible_link": "www.tripadvisor.de › … › Deutschland › Berlin › Hotels Berlin", + "rank": 3 + }, + { + "link": "https://www.berlin.de/hotels/adressen/hotel/riverside-hotel-a8dd6171ea1ddbd0c0247f056a142e05.html", + "title": "Riverside Hotel :: Hotel – Berlin.de", + "snippet": "Das außergewöhnliche Hotel liegt in der Nähe des Friedrichstadtpalasts, dem Berliner Ensemble und der Museumsinsel. Die romantisch und freundlichen eingerichteten Zimmer bieten bis zu 5 Personen im Familienzimmer Platz.", + "visible_link": "https://www.berlin.de/hotels/adressen/hotel/riverside-hotel-a8dd...", + "rank": 4 + }, + { + "link": "https://www.booking.com/hotel/de/artist-riverside-spa.de.html", + "title": "Riverside City Hotel (Deutschland Berlin) - Booking.com", + "snippet": "Hotel Riverside City Hotel Diese Bewertung spiegelt wider, wie die Unterkunft im Hinblick auf die branchenüblichen Standards bezüglich des Preises, der Ausstattung und …", + "visible_link": "https://www.booking.com/hotel/de/artist-riverside-spa.de.html", + "rank": 5 + }, + { + "link": "https://www.hrs.de/hotels/de/deutschland/berlin-berlin/riverside-city-hotel-spa-217031.html", + "title": "Riverside City Hotel Berlin - hrs.de", + "snippet": "Gratis-Leistungen für HRS Gäste im 3 HRS Sterne Riverside City Hotel Berlin: Mineralwasser WLAN 100% Rückerstattung im Kulanzfall Meilen- & Punkte sammeln Mobile Check-In Geprüfte Hotelbewertungen Kostenlose Stornierung bis 18 Uhr Mit Business Tarif 30% Rabatt", + "visible_link": "https://www.hrs.de/hotels/de/deutschland/berlin-berlin/riverside...", + "rank": 6 + }, + { + "link": "http://www.riverside-mitte.de/", + "title": "Home | Riverside Hotel", + "snippet": "Discover true luxury, history and comfort at the Riverside Hotel in Berlin, Germany Immerse Yourself in the City of Berlin. Located alongside the banks of the Spree River at Berlin’s central point, you'll find yourself immersed in the wonders of Western Europe at the Riverside Hotel.", + "visible_link": "www.riverside-mitte.de", + "rank": 7 + } + ] + } + }, + "St. Paul": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:11 GMT", + "no_results": false, + "effective_query": "", + "num_results": "54.100.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Saint_Paul_(Minnesota)", + "title": "Saint Paul (Minnesota) – Wikipedia", + "snippet": "Saint Paul [seɪntˈpɔːl] (abgekürzt St. Paul) ist die Hauptstadt und zweitgrößte Stadt des US-Bundesstaates Minnesota. Sie ist darüber hinaus Verwaltungssitz des Ramsey County. 2010 hatte Saint Paul 285.068 Einwohner.", + "visible_link": "https://de.wikipedia.org/wiki/Saint_Paul_(Minnesota)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Sankt_Paul", + "title": "Sankt Paul – Wikipedia", + "snippet": "Dies ist eine Begriffsklärungsseite zur Unterscheidung mehrerer mit demselben Wort bezeichneter Begriffe.", + "visible_link": "https://de.wikipedia.org/wiki/Sankt_Paul", + "rank": 2 + }, + { + "link": "https://eppan.travel/de/eppan/st-pauls/", + "title": "St. Pauls - Eppan, Südtirol", + "snippet": "St. Pauls hat an die 2.500 Einwohner und liegt auf 394 m Meereshöhe. Jeden Montag füllt der Wochenmarkt das Zentrum des Dorfes, in dem sich übrigens Geschäfte aller Art befinden. Jeden …", + "visible_link": "https://eppan.travel/de/eppan/st-pauls", + "rank": 3 + }, + { + "link": "http://www.st-paulusberlin.de/", + "title": "St. Paulus Berlin", + "snippet": "Diese Seite verwendet Frames. Frames werden von Ihrem Browser aber nicht unterstützt. Diese Seite verwendet Frames. Frames werden von Ihrem Browser aber nicht unterstützt.", + "visible_link": "www.st-paulusberlin.de", + "rank": 4 + }, + { + "link": "https://www.fcstpauli.com/", + "title": "FC St. Pauli - Alle News, Infos und Aktuelles rund um den FCSP", + "snippet": "Die offizielle Webseite des FC St. Pauli ☠ Hier gibt's die aktuellsten News und Infos zum Verein und unseren Kiezkickern!", + "visible_link": "https://www.fcstpauli.com", + "rank": 5 + }, + { + "link": "https://www.eppan.com/de/eppan-an-der-weinstraße/st-pauls/st-pauls/87-0.html", + "title": "St. Pauls - Tourismusverein Eppan", + "snippet": "Traditionelle Häuserfassaden, verwinkelte Erker, gelebte Gastlichkeit, all das zeichnet St. Pauls | Eppan aus. Nicht nur die Pfarrkirche von St. Pauls, wegen ihrer majestätischen Größe auch „Dom auf dem Lande“ genannt, lockt Besucher von Nah und Fern in das kleine Dörfchen.", + "visible_link": "https://www.eppan.com/de/eppan-an-der-weinstraße/st-pauls/st...", + "rank": 6 + }, + { + "link": "https://de.wikipedia.org/wiki/St.-Pauls-Kirche_(Berlin)", + "title": "St.-Pauls-Kirche (Berlin) – Wikipedia", + "snippet": "Die St.-Pauls-Kirche (mit der Kirchengemeinde an der Panke) ist eine evangelische Kirche im Berliner Ortsteil Gesundbrunnen des Bezirks Mitte. Sie gehört zu den vier Schinkelschen Vorstadtkirchen, die alle einen ähnlichen Bauplan haben, und trägt ihren Namen nach dem Apostel Paulus.", + "visible_link": "https://de.wikipedia.org/wiki/St.-Pauls-Kirche_(Berlin)", + "rank": 7 + }, + { + "link": "https://www.erzbistum-muenchen.de/pfarrei/pv-westend/st-paul/85305", + "title": "St. Paul - erzbistum-muenchen.de", + "snippet": "Ich bin damit einverstanden, per Briefpost oder eMail kontaktiert zu werden. Mir ist dabei bewusst, dass Mails an meine Mailadresse möglicherweise von dritten mitgelesen werden können.", + "visible_link": "https://www.erzbistum-muenchen.de/pfarrei/pv-westend/st-paul/85305", + "rank": 8 + }, + { + "link": "https://www.stpauls.co.uk/", + "title": "Home - St Paul's Cathedral", + "snippet": "St Paul’s Cathedral has been here for over 1,400 years. It has been built and rebuilt five times, and always its main purpose has been as a place of worship and prayer. It has been built and rebuilt five times, and always its main purpose has been as a place of worship and prayer.", + "visible_link": "https://www.stpauls.co.uk", + "rank": 9 + } + ] + } + }, + "Buffalo": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:15 GMT", + "no_results": false, + "effective_query": "", + "num_results": "16.600.000 Ergebnisse", + "results": [ + { + "link": "https://www.buffalo.de/", + "title": "BUFFALO® Schuhe & Taschen | Offizieller ShopTRENDING CONTENT", + "snippet": "Buffalo ist deine angesagte Trendmarke für Schuhe und Handtaschen in aufregendem Design. Seit 1979 entwirft und produziert das deutsche Schuhlabel Schuhe und Accessoires in allen Formen und Farben.", + "visible_link": "https://www.buffalo.de", + "rank": 1 + }, + { + "link": "https://www.buffalo-technology.com/de/", + "title": "Buffalo EU B.V. - Buffalo Technology", + "snippet": "Die sicherste NAS Lösung mit allen Komponenten aus einer Hand und dem bestem Service. Neben NAS-Systemen gibt es auch Speicherlösungen und Profi-Switches.", + "visible_link": "https://www.buffalo-technology.com/de", + "rank": 2 + }, + { + "link": "https://de.wikipedia.org/wiki/Buffalo", + "title": "Buffalo – Wikipedia", + "snippet": "Buffalo liegt am östlichen Ende des Eriesees, gegenüber der kanadischen Stadt Fort Erie, am Beginn des Niagara Rivers, der den See entwässert und nordwärts fließend zum Ontariosee führt.", + "visible_link": "https://de.wikipedia.org/wiki/Buffalo", + "rank": 3 + }, + { + "link": "https://www.buffalo-technology.com/", + "title": "Buffalo - Buffalo Technology", + "snippet": "We offer solutions. Buffalo NAS systems are industry leaders. Buffalo NAS solutions are the best storage systems for small and medium-sized businesses (SMB) and demanding users.", + "visible_link": "https://www.buffalo-technology.com", + "rank": 4 + }, + { + "link": "https://www.otto.de/mode/?marke=buffalo", + "title": "Buffalo Online-Shop | OTTO", + "snippet": "Buffalo online kaufen bei OTTO › Große Auswahl Top Marken Ratenkauf & Kauf auf Rechnung möglich › Bestellen Sie jetzt!", + "visible_link": "https://www.otto.de/mode/?marke=buffalo", + "rank": 5 + }, + { + "link": "https://www.zalando.de/buffalo/", + "title": "Buffalo Online Shop | Buffalo online bestellen bei Zalando", + "snippet": "Buffalo Buffalo Schuhe – das sind die Farben und Styles der kommenden Saison. Buffalo folgt konsequent den Trends der Straße und begeistert uns seit 1979 jede Saison aufs Neue mit stylishen Allroundern und High-Fashion-Kreationen für den glamourösen Look.", + "visible_link": "https://www.zalando.de/buffalo", + "rank": 6 + }, + { + "link": "https://www.stylight.de/Bufallo/", + "title": "Buffalo® Mode − Sale: jetzt bis zu −32% | Stylight", + "snippet": "Bestseller von Buffalo® bei Stylight: 1572 Produkte Trendmarke 2019 Buffalo Bestseller aus 13 Shops bis zu −32% im Sale » Jetzt shoppen!", + "visible_link": "https://www.stylight.de/Bufallo", + "rank": 7 + }, + { + "link": "https://www.buffalo-boots.com/", + "title": "BUFFALO® Online Shop - Discover amazing …", + "snippet": "BUFFALO is your hot trend brand for shoes and handbags with an exciting design. Since 1979, the German shoe label designs and produces shoes and accessories in all shapes and colours.", + "visible_link": "https://www.buffalo-boots.com", + "rank": 8 + } + ] + } + }, + "Laredo": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:18 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Laredo_(Texas)", + "title": "Laredo (Texas) – Wikipedia", + "snippet": "Laredo ist eine Stadt im US-Bundesstaat Texas am Nordufer des Rio Grande an der Grenze zu Mexiko. Laredo ist Verwaltungssitz des Webb County. Zur einwohnerreicheren mexikanischen Schwesterstadt Nuevo Laredo am gegenüber gelegenen Südufer des Rio Grande führen vier Straßenbrücken und eine Eisenbahnbrücke.", + "visible_link": "https://de.wikipedia.org/wiki/Laredo_(Texas)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Laredo_(Spanien)", + "title": "Laredo (Spanien) – Wikipedia", + "snippet": "Laredo ist eine Stadt in Spanien. Sie hat 11.347 Einwohner (Stand: 1. Januar 2017) und eine Fläche von 13 km². Laredo liegt an wohl einer der schönsten Buchten in Kantabrien.", + "visible_link": "https://de.wikipedia.org/wiki/Laredo_(Spanien)", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g644318-Laredo_Cantabria-Vacations.html", + "title": "Laredo, Spanien: Tourismus in Laredo - TripAdvisor", + "snippet": "Auf TripAdvisor finden Sie alles für Laredo, Kantabrien: 8.447 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › Europa › Spanien › Kantabrien", + "rank": 3 + }, + { + "link": "https://www.spain.info/de/que-quieres/ciudades-pueblos/otros-destinos/laredo.html", + "title": "Laredo. Kantabrien. Was Sie sich ansehen sollten | spain ...", + "snippet": "Zwischen dem Meeresarm Ría de Treto und der Bucht von Santoña liegt Laredo - einer der wichtigsten Tourismusorte der kantabrischen Küste. Er verfügt über einen der größten und schönsten Strände der Region: La Salvé - ein riesiger, fünf Kilometer langer Sandstrand.", + "visible_link": "https://www.spain.info/.../ciudades-pueblos/otros-destinos/laredo.html", + "rank": 4 + }, + { + "link": "https://en.wikipedia.org/wiki/Laredo,_Texas", + "title": "Laredo, Texas - Wikipedia", + "snippet": "Laredo (/ l ə ˈ r eɪ d oʊ / lə-RAY-doh; Spanish: ) is the county seat of Webb County, Texas, United States, on the north bank of the Rio Grande in South Texas, across from Nuevo Laredo…", + "visible_link": "https://en.wikipedia.org/wiki/Laredo,_Texas", + "rank": 5 + }, + { + "link": "https://suchen.mobile.de/auto/jeep-grand-cherokee-laredo.html", + "title": "Jeep Grand Cherokee Laredo Angebote bei mobile.de kaufen", + "snippet": "mobile.de: Jeep Grand Cherokee Laredo kaufen. Finden Sie eine Vielzahl von günstigen Angeboten bei mobile.de - Deutschlands größter Fahrzeugmarkt", + "visible_link": "suchen.mobile.de › Suchen › Jeep › Grand Cherokee", + "rank": 6 + }, + { + "link": "https://www.laredo-band.de/", + "title": "Laredo GbR - Home", + "snippet": "Für viele, die uns schon einmal erlebt haben, steht dieses Lied für die ausgelassene Stimmung, die nicht nur bei \"Bocketal\" aufkommt, sondern sich durch den ganzen Abend zieht.", + "visible_link": "https://www.laredo-band.de", + "rank": 7 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g56137-Laredo_Texas-Vacations.html", + "title": "Laredo 2019: Best of Laredo, TX Tourism - …", + "snippet": "Laredo Tourism: TripAdvisor has 9,892 reviews of Laredo Hotels, Attractions, and Restaurants making it your best Laredo resource.", + "visible_link": "www.tripadvisor.com › United States › Texas (TX)", + "rank": 8 + }, + { + "link": "https://www.wetter.com/wetter_aktuell/wettervorhersage/16_tagesvorhersage/spanien/laredo/ES0CT0035.html", + "title": "Wetter Laredo: 16 Tage Trend | wetter.com", + "snippet": "Der 16 Tage Wetter Trend für 39750 Laredo. Temperatur, Wetterzustand, Sonnenstunden und Regenwahrscheinlichkeit in der 16 Tagesübersicht.", + "visible_link": "www.wetter.com › Europa › Spanien › Kantabrien › Laredo", + "rank": 9 + }, + { + "link": "https://www.braddys-laredos.de/", + "title": "Braddy's Laredo's - GRILL HOUSE & AMERICAN BAR", + "snippet": "Amerikanische und Mexikanische Küche mit wunderschönem Blick auf die Sieg. Großer Innen- und Außenbereich, Biergarten und Veranstaltungssaal.", + "visible_link": "https://www.braddys-laredos.de", + "rank": 10 + } + ] + } + }, + "Glendale": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:21 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.600.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Glendale_(Kalifornien)", + "title": "Glendale (Kalifornien) – Wikipedia", + "snippet": "Glendale ist eine Stadt im US-Bundesstaat Kalifornien mit rund 191.000 Einwohnern (Stand der Volkszählung 2010). Sie liegt im Großraum Los Angeles und ist …", + "visible_link": "https://de.wikipedia.org/wiki/Glendale_(Kalifornien)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Glendale_(Arizona)", + "title": "Glendale (Arizona) – Wikipedia", + "snippet": "Glendale ist eine City in Maricopa County im US-Bundesstaat Arizona, Vereinigte Staaten, mit fast 250.000 Einwohnern (Schätzung 2016, U.S. Census Bureau).", + "visible_link": "https://de.wikipedia.org/wiki/Glendale_(Arizona)", + "rank": 2 + }, + { + "link": "https://www.wetteronline.de/wetter/glendale", + "title": "Wetter Glendale - aktuelle Wettervorhersage von WetterOnline", + "snippet": "Wetter Glendale. Das Wetter für Glendale im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Glendale finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › Rocky Mountains › Arizona", + "rank": 3 + }, + { + "link": "https://en.wikipedia.org/wiki/Glendale,_California", + "title": "Glendale, California - Wikipedia", + "snippet": "Glendale / ˈ ɡ l ɛ n d eɪ l / is a city in Los Angeles County, California, United States. Its estimated 2014 population was 200,167, making it the fourth largest city in Los Angeles County and the 23rd-largest city in …", + "visible_link": "https://en.wikipedia.org/wiki/Glendale,_California", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g31231-Glendale_Arizona-Vacations.html", + "title": "Glendale 2019: Best of Glendale, AZ Tourism - …", + "snippet": "Glendale Tourism: TripAdvisor has 20,154 reviews of Glendale Hotels, Attractions, and Restaurants making it your best Glendale resource.", + "visible_link": "www.tripadvisor.com › … › Arizona (AZ) › Central Arizona", + "rank": 5 + }, + { + "link": "https://de.wikivoyage.org/wiki/Glendale", + "title": "Glendale – Reiseführer auf Wikivoyage", + "snippet": "Dieser Artikel ist ein Wegweiser, da es mehrere Orte dieses Namens oder mehrere gleichartige Themenartikel gibt. Wenn du durch einen Link von einem anderen Artikel hierher gekommen bist, kannst du uns helfen, indem du den Link im Artikel so korrigierst, dass er direkt zum Ziel führt.", + "visible_link": "https://de.wikivoyage.org/wiki/Glendale", + "rank": 6 + } + ] + } + }, + "Irving": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:23 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.500.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/John_Irving", + "title": "John Irving – Wikipedia", + "snippet": "Werdegang. John Irving wurde als John Wallace Blunt, Jr. geboren. Benannt war er nach seinem Vater, einem Kampfpiloten. Seine Mutter, Helen Frances Winslow, eine Krankenschwester, ließ sich jedoch schon vor der Geburt des Sohnes scheiden.", + "visible_link": "https://de.wikipedia.org/wiki/John_Irving", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Kyrie_Irving", + "title": "Kyrie Irving – Wikipedia", + "snippet": "Kyrie Andrew Irving (* 23. März 1992 in Melbourne, Victoria) ist ein australisch-US-amerikanischer Basketballspieler. Irving spielte nach der High School ein Jahr für die Duke University.", + "visible_link": "https://de.wikipedia.org/wiki/Kyrie_Irving", + "rank": 2 + }, + { + "link": "https://www.amazon.de/John-Irving/e/B000APTDJ4", + "title": "Amazon.de: John Irving: Bücher, Hörbücher, Bibliografie", + "snippet": "John Irving wurde 1942 in Exeter in New Hampshire geboren. Als Berufsziele gab er schon sehr früh an: Ringen und Romane schreiben. Irving lebt und schreibt heute abwechselnd in …", + "visible_link": "https://www.amazon.de/John-Irving/e/B000APTDJ4", + "rank": 3 + }, + { + "link": "https://en.wikipedia.org/wiki/Irving,_Texas", + "title": "Irving, Texas - Wikipedia", + "snippet": "Irving is a principal city in Dallas County in the U.S. state of Texas and it is also an inner ring suburb of the city of Dallas. According to a 2017 estimate from the United States Census Bureau, the city population was 240,373 making it the thirteenth-most populous city in Texas and 93rd most populous city in the U.S.", + "visible_link": "https://en.wikipedia.org/wiki/Irving,_Texas", + "rank": 4 + }, + { + "link": "http://www.spiegel.de/thema/david_irving/", + "title": "David Irving - SPIEGEL ONLINE", + "snippet": "Dem Holocaust-Leugner David Irving wird voraussichtlich in Österreich der Prozess gemacht; Dem britischen Rechtsextremisten David Irving, der in der Steiermark festgenommen wurde und seither in ...", + "visible_link": "www.spiegel.de › Panorama › Gesellschaft", + "rank": 5 + }, + { + "link": "https://www.perlentaucher.de/autor/john-irving.html", + "title": "John Irving - 8 Bücher - Perlentaucher", + "snippet": "John Irving wurde 1942 in Exeter in New Hampshire geboren. Als Berufsziele gab der Sohn eines Professors für russische Geschichte schon sehr früh an: Ringen und Romane schreiben.", + "visible_link": "https://www.perlentaucher.de/autor/john-irving.html", + "rank": 6 + }, + { + "link": "https://www.vorname.com/name,Irving.html", + "title": "Vorname Irving: Herkunft, Bedeutung & Namenstag", + "snippet": "Irving als Jungenname ♂ Herkunft, Bedeutung & Namenstag im Überblick Alle Infos zum Namen Irving auf Vorname.com entdecken!", + "visible_link": "https://www.vorname.com/name,Irving.html", + "rank": 7 + } + ] + } + }, + "Houston": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:45 GMT", + "no_results": false, + "effective_query": "", + "num_results": "20.100.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Houston", + "title": "Houston – Wikipedia", + "snippet": "Geografie. Houston liegt an der Südküste der Vereinigten Staaten und im Osten des Bundesstaates Texas direkt am Golf von Mexiko in der Golfküstenebene.", + "visible_link": "https://de.wikipedia.org/wiki/Houston", + "rank": 1 + }, + { + "link": "http://texas-houston.de/", + "title": "Houston in Texas, USA", + "snippet": "Die international bekannte Stadt Houston ist nicht nur die viertgrößte Stadt in den USA, sondern auch die größte Stadt im Bundesstaat Texas, wobei sie im August 1836 gegründet wurde und seither eine rasante Entwicklung erfuhr.", + "visible_link": "texas-houston.de", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g56003-Houston_Texas-Vacations.html", + "title": "Houston, TX: Tourismus in Houston - TripAdvisor", + "snippet": "Die Energie und das Streben nach Unabhängigkeit, die diese Stadt geprägt haben, sind in Houston noch heute regelrecht spürbar. Das führende kulturelle und kulinarische Reiseziel im Süden hat über 11 000 Restaurants zu bieten, in denen Gerichte aus mehr als 70 Ländern serviert werden.", + "visible_link": "www.tripadvisor.de › USA › Texas (TX) › Texas Gulf Coast", + "rank": 3 + }, + { + "link": "https://www.wetteronline.de/wetter/houston", + "title": "Wetter Houston - aktuelle Wettervorhersage von WetterOnline", + "snippet": "Wetter Houston. Das Wetter für Houston im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Houston finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › Südstaaten › Texas", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g56003-Houston_Texas-Vacations.html", + "title": "Houston 2019: Best of Houston, TX Tourism - …", + "snippet": "Houston hums with an energy and independent spirit all its own. A leading cultural and culinary destination in the South, the city is home to over 11,000 restaurants featuring …", + "visible_link": "www.tripadvisor.com › … › Texas (TX) › Texas Gulf Coast", + "rank": 5 + }, + { + "link": "https://www.stern.de/lifestyle/leute/themen/whitney-houston-4540996.html", + "title": "Whitney Houston | STERN.de", + "snippet": "Whitney Houston gehört mit 170 Millionen verkauften Tonträgern und über 200 Gold-, Platin-, Silber- und Diamantschallplatten sowie sechs Grammys zu den ...", + "visible_link": "https://www.stern.de/lifestyle/leute/themen/whitney-houston...", + "rank": 6 + }, + { + "link": "http://www.spiegel.de/wissenschaft/natur/texas-warum-harvey-houston-so-schwer-trifft-a-1164888.html", + "title": "Texas: Warum \"Harvey\" Houston so schwer trifft - SPIEGEL ...", + "snippet": "Houston steht unter Wasser - und es regnet weiter. Ein Grund für die verheerende Situation der Stadt ist ihre Lage an der Küste. Das entscheidende Problem ist aber ein anderes.", + "visible_link": "www.spiegel.de › Wissenschaft › Natur › Hurrikan \"Harvey\"", + "rank": 7 + }, + { + "link": "https://de.wikipedia.org/wiki/Whitney_Houston", + "title": "Whitney Houston – Wikipedia", + "snippet": "Whitney Houston war das zweite Kind von Cissy Houston und John Russell Houston jr. (1920–2003). Ihre Mutter Cissy war 1969 als Sängerin bei den Sweet Inspirations, der Begleitgruppe von Elvis Presley, sowie unter anderem bei Jimi Hendrix engagiert.", + "visible_link": "https://de.wikipedia.org/wiki/Whitney_Houston", + "rank": 8 + }, + { + "link": "https://en.wikipedia.org/wiki/Houston", + "title": "Houston - Wikipedia", + "snippet": "Houston (/ ˈ h juː s t ən / HEW-stən) is the most populous city in the U.S. state of Texas and the fourth most populous city in the United States, with a census-estimated population of 2.312 million in 2017. It is the most populous city in the Southern United States and on the Gulf Coast of the United States.", + "visible_link": "https://en.wikipedia.org/wiki/Houston", + "rank": 9 + } + ] + } + }, + "Austin": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:49 GMT", + "no_results": false, + "effective_query": "", + "num_results": "18.600.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Austin_(Texas)", + "title": "Austin (Texas) – Wikipedia", + "snippet": "Austin [ˈɔːstɪn] ist die Hauptstadt und die viertgrößte Stadt des US-Bundesstaates Texas. Sie liegt am Colorado River. Der überall präsente Slogan „Keep Austin Weird“ (halte Austin eigenartig) gilt als besonders treffendes Motto für die studentisch geprägte Atmosphäre der Stadt.", + "visible_link": "https://de.wikipedia.org/wiki/Austin_(Texas)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Austin", + "title": "Austin – Wikipedia", + "snippet": "Austin steht für: Austin (Familienname), Familienname; Austin College, College in Sherman (Texas) Austin Motor Company, britische Automarke; Austin Automobile Company, US-amerikanischer Automobilhersteller (1903–1920)", + "visible_link": "https://de.wikipedia.org/wiki/Austin", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g30196-Activities-Austin_Texas.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Austin 2019 (mit fotos ...", + "snippet": "18.02.2019 Top 10 Austin Sehenswürdigkeiten: Hier finden Sie 67.290 Bewertungen und Fotos von Reisenden über 278 Sehenswürdigkeiten, Touren und Ausflüge - alle Austin Aktivitäten auf einen Blick.", + "visible_link": "www.tripadvisor.de › USA › Texas (TX) › Austin", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g30196-Austin_Texas-Vacations.html", + "title": "Austin, TX: Tourismus in Austin - TripAdvisor", + "snippet": "Austin ist weltbekannt für seine Live-Musik. Die Stadt hat jedoch noch viel mehr zu bieten. Dank spektakulärer Unterhaltungsviertel, einem omnipräsenten kulturellen Angebot und erstklassigen Restaurants können Sie in Austin Ihren ganz eigenen Soundtrack erstellen.", + "visible_link": "www.tripadvisor.de › USA › Texas (TX)", + "rank": 4 + }, + { + "link": "https://www.autoscout24.de/auto/austin/", + "title": "Austin Gebrauchtwagen kaufen bei AutoScout24", + "snippet": "Austin – ein Spiegelbild des britischen Automobilbaus. Die Austin Motor Company spiegelte seit ihrer Gründung zu Beginn des 20. Jahrhunderts die wechselvolle Geschichte der britischen Fahrzeugindustrie wider wie kaum ein anderes Unternehmen der Branche.", + "visible_link": "https://www.autoscout24.de/auto/austin", + "rank": 5 + }, + { + "link": "https://www.davidaustinroses.com/de/", + "title": "David Austin Roses – Rosen, Rosenpflege und Fachberatung", + "snippet": "Das 'Rosenhandbuch' von David Austin. Fordern Sie ein kostenfreies Exemplar unseres traditionell gestalteten Rosenkatalogs an! Dieses Büchlein ist seit vielen Jahren angesagte Bettlektüre bei Rosenliebhabern und gibt so manche Anregung für die Gartengestaltung.", + "visible_link": "https://www.davidaustinroses.com/de", + "rank": 6 + }, + { + "link": "https://suchen.mobile.de/auto/austin-healey-3000.html", + "title": "Austin Healey 3000 Angebote bei mobile.de kaufen", + "snippet": "mobile.de: Austin Healey 3000 kaufen. Finden Sie eine Vielzahl von günstigen Angeboten bei mobile.de - Deutschlands größter Fahrzeugmarkt", + "visible_link": "suchen.mobile.de › Suchen › Austin Healey", + "rank": 7 + }, + { + "link": "https://www.austintexas.org/things-to-do/", + "title": "Things To Do in Austin, TX | Find Attractions, …", + "snippet": "THINGS TO DO IN AUSTIN Known for Music. And so Much More. Years ago when people talked about Austin they would quickly mention the music. But that's just the beginning of …", + "visible_link": "https://www.austintexas.org/things-to-do", + "rank": 8 + }, + { + "link": "https://www.instagram.com/austinmahone/", + "title": "Austin Mahone (@austinmahone) • Instagram …", + "snippet": "10.1m Followers, 470 Following, 2,835 Posts - See Instagram photos and videos from Austin Mahone (@austinmahone)", + "visible_link": "https://www.instagram.com/austinmahone", + "rank": 9 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g30196-Austin_Texas-Vacations.html", + "title": "Austin 2019: Best of Austin, TX Tourism - …", + "snippet": "Live music is the essence of Austin, but it isn’t even close to the whole story. With spectacular entertainment districts, ubiquitous culture and top-notch restaurants, Austin …", + "visible_link": "www.tripadvisor.com › United States › Texas (TX)", + "rank": 10 + } + ] + } + }, + "Detroit": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:52 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.600.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Detroit", + "title": "Detroit – Wikipedia", + "snippet": "Detroit [dɪˈtɹɔɪt] ist eine Großstadt im Südosten des US-Bundesstaates Michigan. Sie liegt direkt an der kanadischen Grenze, am Detroit River zwischen dem Lake St. Clair und dem Eriesee.", + "visible_link": "https://de.wikipedia.org/wiki/Detroit", + "rank": 1 + }, + { + "link": "http://detroit-michigan.de/", + "title": "Detroit, MI Michigan USA", + "snippet": "Detroit befindet sich im US-Bundesstaat Michigan im westlichen mittleren Nordamerika. Detroit und der dazugehörige Landkreis verfügen über eine Bevölkerung von knapp 872.000 Einwohnern.", + "visible_link": "detroit-michigan.de", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g42139-Detroit_Michigan-Vacations.html", + "title": "Detroit, MI: Tourismus in Detroit - TripAdvisor", + "snippet": "Erleben Sie eine spannende Zeit in Detroit und genießen Sie die geschäftige Innenstadt, die einen spektakulären Wandel durchlebt hat. Als Geburtsort des Motown-Labels und der Technomusik bekannt erwartet Besucher in dieser Stadt ebenfalls eines der größten Theaterviertel in Amerika sowie vier", + "visible_link": "www.tripadvisor.de › USA › Michigan (MI)", + "rank": 3 + }, + { + "link": "http://www.filmstarts.de/kritiken/244774.html", + "title": "Detroit - Film 2017 - FILMSTARTS.de", + "snippet": "Detroit, 1967: Die schwarze Bevölkerung leidet bereits seit vielen Jahren unter Diskriminierung und sozialer Ungerechtigkeit. An einem hitzigen Sommertag eskaliert der Konflikt schließlich und ...", + "visible_link": "www.filmstarts.de › Kino › Beste Filme › Filme Drama", + "rank": 4 + }, + { + "link": "https://www.cinema.de/film/detroit,8890325.html", + "title": "Detroit - Film | cinema.de", + "snippet": "Kathryn Bigelow, Expertin für knallharte Filmstoffe und ausgewachsenes Politkino an den Fronten, hat einen derart intensiven Thriller gedreht, als wäre der Teufel hinter ihr her, in Gestalt vandalisierender Gangs oder sadistischer Machtapparate.", + "visible_link": "www.cinema.de › Film", + "rank": 5 + }, + { + "link": "https://www.amazon.de/Detroit-Become-Human-PlayStation-4/dp/B01B68PSF6", + "title": "Detroit: Become Human - [PlayStation 4]: Amazon.de: Games", + "snippet": "Beim Versand durch Amazon nutzen Verkaufspartner die Logistik der Amazon-Versandzentren: Amazon verpackt und verschickt die Artikel und übernimmt den Kundenservice.", + "visible_link": "www.amazon.de › Games › PlayStation 4 › Spiele", + "rank": 6 + }, + { + "link": "https://www.autobild.de/messen/detroit-auto-show/", + "title": "Detroit Auto Show: News & Bilder hier! - autobild.de", + "snippet": "Die US-Automesse in Detroit bietet jede Menge Auto-Neuheiten: Bei AUTO BILD finden Sie alle News, Bilder & Videos dieses und voriger Jahre!", + "visible_link": "https://www.autobild.de/messen/detroit-auto-show", + "rank": 7 + }, + { + "link": "https://www.imdb.com/title/tt5390504/", + "title": "Detroit (2017) - IMDb", + "snippet": "04.08.2017 · Fact-based drama set during the 1967 Detroit riots in which a group of rogue police officers respond to a complaint with retribution rather than justice on their minds.", + "visible_link": "https://www.imdb.com/title/tt5390504", + "rank": 8 + }, + { + "link": "https://en.wikipedia.org/wiki/Detroit", + "title": "Detroit - Wikipedia", + "snippet": "Early settlement. Paleo-Indian people inhabited areas near Detroit as early as 11,000 years ago including the culture referred to as the Mound-builders. In the 17th century, the region was inhabited by Huron, Odawa, Potawatomi and Iroquois peoples.", + "visible_link": "https://en.wikipedia.org/wiki/Detroit", + "rank": 9 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g42139-Detroit_Michigan-Vacations.html", + "title": "Detroit 2019: Best of Detroit, MI Tourism - …", + "snippet": "With a vibrant, revitalized downtown, it’s revival time in Detroit. Renowned as the birthplace of Motown and techno, the city boasts one of the largest theater districts in America — as well as four pro sports teams, set just blocks apart.", + "visible_link": "www.tripadvisor.com › United States › Michigan (MI)", + "rank": 10 + } + ] + } + }, + "Nashville-Davidson": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:54 GMT", + "no_results": false, + "effective_query": "", + "num_results": "1.550.000 Ergebnisse", + "results": [ + { + "link": "https://en.wikipedia.org/wiki/Nashville-Davidson_(balance),_Tennessee", + "title": "Nashville-Davidson (balance), Tennessee - …", + "snippet": "Nashville-Davidson (balance) is the name used by the U.S. Census Bureau to designate the portion of Davidson County, Tennessee, United States that does not include satellite cities of Nashville.", + "visible_link": "https://en.wikipedia.org/wiki/Nashville-Davidson_(balance),_Tennessee", + "rank": 1 + }, + { + "link": "https://www.viamichelin.de/web/Routenplaner/Route-Nashville-_-Tennessee-Vereinigte_Staaten-nach-Nashville_Davidson-_-Tennessee-Vereinigte_Staaten", + "title": "Routenplaner Nashville - Nashville-Davidson - Entfernung ...", + "snippet": "Routenplan Nashville - Nashville-Davidson Berechnen Sie Ihre Route von Nashville nach Nashville-Davidson schnell und einfach mit ViaMichelin.", + "visible_link": "www.viamichelin.de › Routenplaner", + "rank": 2 + }, + { + "link": "https://en.wikipedia.org/wiki/Nashville-Davidson,_Tennessee", + "title": "Nashville, Tennessee - Wikipedia", + "snippet": "Nashville is the capital and most populous city of the U.S. state of Tennessee. The city is the county seat of Davidson County and is located on the Cumberland River. The city's population ranks 24th in the U.S.", + "visible_link": "https://en.wikipedia.org/wiki/Nashville-Davidson,_Tennessee", + "rank": 3 + }, + { + "link": "https://de.bab.la/woerterbuch/deutsch-englisch/nashville-davidson", + "title": "Nashville-Davidson - Englisch-Übersetzung - bab.la Deutsch ...", + "snippet": "Übersetzung für 'Nashville-Davidson' im kostenlosen Deutsch-Englisch Wörterbuch und viele weitere Englisch-Übersetzungen.", + "visible_link": "https://de.bab.la/woerterbuch/deutsch-englisch/nashville-davidson", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g55229-Activities-Nashville_Davidson_County_Tennessee.html", + "title": "2019 DIE TOP 10 Sehenswürdigkeiten in Nashville Februar ...", + "snippet": "21.02.2019 Top 10 Nashville Sehenswürdigkeiten: Hier finden Sie 155.828 Bewertungen und Fotos von Reisenden über 189 Sehenswürdigkeiten, Touren und Ausflüge - alle Nashville Aktivitäten auf einen Blick.", + "visible_link": "www.tripadvisor.de › … › Davidson County › Nashville", + "rank": 5 + }, + { + "link": "https://www.viamichelin.de/web/Hotels/Hotels-Nashville_Davidson-_-Tennessee-Vereinigte_Staaten", + "title": "Hotels in Nashville-Davidson - Hotelbuchung in Nashville ...", + "snippet": "Hotelreservierung Nashville-Davidson - Hotel Nashville-Davidson mit ViaMichelin Finden Sie Ihr Hotel in Nashville-Davidson mit ViaMichelin: Hotels, Unterkünfte, Campingplätze, Ferienwohnungen, Bed & Breakfast Nashville-Davidson.", + "visible_link": "www.viamichelin.de › Hotels › Hotels Vereinigte_Staaten", + "rank": 6 + }, + { + "link": "https://www.infoplease.com/world/us-cities/nashville-davidson-tenn", + "title": "Nashville-Davidson, Tenn.: Population, Weather ...", + "snippet": "1. Nashville-Davidson city is consolidated with Davidson County. 2. Nashville–Davidson–Murfreesboro, Tenn. Nashville-Davidson is the state capital and second-largest city in Tennessee and is located in the north-central part of the state on the Cumberland River. It is coextensive with Davidson", + "visible_link": "https://www.infoplease.com/world/us-cities/nashville-davidson-tenn", + "rank": 7 + }, + { + "link": "http://universal_lexikon.deacademic.com/276703/", + "title": "Nashville-Davidson - …", + "snippet": "[ næʃvɪl deɪvɪdsn], bis 1963 Nashville, Hauptstadt des Bundesstaates Tennessee, USA, am Cumberland River, (1994) 504 500 Einwohner; katholischer Bischofssitz; vier Universitäten (gegründet 1867, 1873, 1891 und 1912), Belmont College; Sitz…", + "visible_link": "universal_lexikon.deacademic.com/276703", + "rank": 8 + }, + { + "link": "https://www.realtor.com/realestateandhomes-search/Nashville-Davidson_TN", + "title": "Nashville-Davidson, TN Real Estate - Nashville …", + "snippet": "Find homes for sale and real estate in Nashville-Davidson, TN at realtor.com®. Search and filter Nashville-Davidson homes by price, beds, baths and property type.", + "visible_link": "https://www.realtor.com/.../Nashville-Davidson_TN", + "rank": 9 + }, + { + "link": "https://www.nashville.gov/", + "title": "Nashville > Home", + "snippet": "Nashville.gov - Metropolitan Government of Nashville and Davidson County, Tennessee", + "visible_link": "https://www.nashville.gov", + "rank": 10 + } + ] + } + }, + "Albuquerque": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:57 GMT", + "no_results": false, + "effective_query": "", + "num_results": "14.700.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Albuquerque", + "title": "Albuquerque – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/Albuquerque", + "rank": 1 + }, + { + "link": "http://www.usatourist.com/deutsch/destinations/newmexico/albuquerque/albuquerque-main.html", + "title": "Albuquerque, New Mexico - usatourist.com", + "snippet": "Albuquerque, New Mexico. Albuquerque (ausgesprochen al-bu- kirkie) ist die grösste Stadt in New Mexico. Sie liegt am Rio Grande Fluss entlang nahe der Mitte des Staates.", + "visible_link": "www.usatourist.com/deutsch/destinations/newmexico/albuquerque/...", + "rank": 2 + }, + { + "link": "https://de.wikipedia.org/wiki/Alburquerque", + "title": "Alburquerque – Wikipedia", + "snippet": "Alburquerque oder Albuquerque ist ein möglicherweise aus dem Arabischen stammendes spanisches Toponym und ein dazugehöriger Adelstitel. In beiden Schreibweisen ist es auch ein geläufiger portugiesischer Nachname.", + "visible_link": "https://de.wikipedia.org/wiki/Alburquerque", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g60933-Albuquerque_New_Mexico-Vacations.html", + "title": "Albuquerque 2019: Best of Albuquerque, NM …", + "snippet": "Whether you're into history, culture, outdoor adventures or just in need of some new and unique scenery, Albuquerque offers exciting attractions for all ages and interests, anytime of the year.", + "visible_link": "www.tripadvisor.com › United States › New Mexico (NM)", + "rank": 4 + }, + { + "link": "https://www.wetteronline.de/wetter/albuquerque", + "title": "Wetter Albuquerque - aktuelle Wettervorhersage von ...", + "snippet": "Wetterbericht Albuquerque. Während es am Dienstag noch bedeckt ist, ist es am Mittwoch sonnig. Dabei fällt am Dienstag Schnee. Von 8 Grad am Montag gehen die Höchstwerte in der Region Albuquerque auf 1 Grad am Dienstag zurück.", + "visible_link": "www.wetteronline.de › … › USA › Rocky Mountains › New Mexico", + "rank": 5 + }, + { + "link": "https://www.visitalbuquerque.org/", + "title": "The Official Website for Albuquerque, New …", + "snippet": "Start planning your Albuquerque vacation! Find information on Albuquerque attractions, shopping and dining, browse maps, order a guide and more.", + "visible_link": "https://www.visitalbuquerque.org", + "rank": 6 + }, + { + "link": "https://de.wikivoyage.org/wiki/Albuquerque", + "title": "Albuquerque – Reiseführer auf Wikivoyage", + "snippet": "Albuquerque ist die größte Stadt im US-Bundesstaat New Mexico und liegt am Rio Grande. Internationale Sichtbarkeit hat die Stadt zuletzt durch die Fernsehserie Breaking Bad erlangt (Zeit-Artikel).", + "visible_link": "https://de.wikivoyage.org/wiki/Albuquerque", + "rank": 7 + }, + { + "link": "https://www.cabq.gov/", + "title": "City of Albuquerque", + "snippet": "Visions of the Hispanic World. Nearly 4,000 years of Spanish art and history on display at Albuquerque Museum.", + "visible_link": "https://www.cabq.gov", + "rank": 8 + }, + { + "link": "https://www.zeitzonen.de/usa/new-mexico/albuquerque.html", + "title": "Aktuelle Uhrzeit und Datum in Albuquerque | USA - New ...", + "snippet": "Ok, danke. Cookies erleichtern die Bereitstellung unserer Dienste. Mit der Nutzung unserer Dienste erklären Sie sich damit einverstanden, dass wir Cookies verwenden.", + "visible_link": "https://www.zeitzonen.de/usa/new-mexico/albuquerque.html", + "rank": 9 + }, + { + "link": "https://en.wikipedia.org/wiki/Albuquerque,_New_Mexico", + "title": "Albuquerque, New Mexico - Wikipedia", + "snippet": "Etymology. The name of the city has its origin through Latin, deriving from albus quercus meaning \"white oak\". The name was probably given in reference to the prevalence of cork oaks in the province of Badajoz, which have white wood when the bark is removed.", + "visible_link": "https://en.wikipedia.org/wiki/Albuquerque,_New_Mexico", + "rank": 10 + } + ] + } + }, + "Virginia Beach": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:00 GMT", + "no_results": false, + "effective_query": "", + "num_results": "93.700.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Virginia_Beach", + "title": "Virginia Beach – Wikipedia", + "snippet": "Virginia Beach (Abkürzung: VB; auch: Virginia Beach, Va.) ist eine kreisfreie Stadt in der Region Hampton Roads im US-Bundesstaat Virginia. Sie liegt an …", + "visible_link": "https://de.wikipedia.org/wiki/Virginia_Beach", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g58277-Virginia_Beach_Virginia-Vacations.html", + "title": "Virginia Beach 2019: Best of Virginia Beach, VA …", + "snippet": "Virginia Beach has all the elements of a classic seaside resort: gorgeous beaches, a lively boardwalk, plenty of restaurants and nightspots, and amusement rides sure to appeal to kids.", + "visible_link": "www.tripadvisor.com › United States › Virginia (VA)", + "rank": 2 + }, + { + "link": "https://www.vbgov.com/Pages/default.aspx", + "title": "VBgov.com :: City of Virginia Beach", + "snippet": "So Many Choices, So Little Time! Feb. 18 - 24. This extraordinary dining event is your chance to dine out at Virginia Beach's finest restaurants.", + "visible_link": "https://www.vbgov.com/Pages/default.aspx", + "rank": 3 + }, + { + "link": "https://www.visitvirginiabeach.com/international/german/", + "title": "German - Virginia Beach", + "snippet": "Standort. Zentral an der US-Ostküste gelegen, befindet sich Virginia Beach im Südosten von Virginia. Der beliebte Badeort liegt nur dreieinhalb Autostunden südlich von Washington, D.C. und in kurzer Distanz zu vielen Städten im Osten, Süden und der Mitte der USA.", + "visible_link": "https://www.visitvirginiabeach.com/international/german", + "rank": 4 + }, + { + "link": "https://www.wetteronline.de/wetter/virginia-beach", + "title": "Wetter Virginia Beach - aktuelle Wettervorhersage von ...", + "snippet": "Wetter Virginia Beach. Das Wetter für Virginia Beach im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Virginia Beach finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › US-Ostküste › Virginia", + "rank": 5 + }, + { + "link": "https://www.wetter.com/wetter_aktuell/wettervorhersage/16_tagesvorhersage/vereinigte_staaten_von_amerika/virginia_beach/US0VA0792.html", + "title": "Wetter Virginia Beach: 16 Tage Trend | wetter.com", + "snippet": "Wetter heute, 19.02.2019 In Virginia Beach gibt es am Morgen einen wolkenlosen Himmel bei Temperaturen von 2°C. Mittags gibt es überwiegend blauen Himmel mit vereinzelten Wolken und das Thermometer klettert auf 5°C.", + "visible_link": "www.wetter.com › Nordamerika › USA › Virginia › Virginia Beach", + "rank": 6 + }, + { + "link": "https://www.visitvirginiabeach.com/", + "title": "Visit Virginia Beach VA | Find Hotels, Restaurants ...", + "snippet": "Discover Virginia Beach, a vibrant coastal city with unique districts open year-round. Enjoy the blossoming culinary scene, the variety of attractions, and unique experiences. There is truly is something for everyone. Learn more about what makes the perfect Virginia Beach vacation.", + "visible_link": "https://www.visitvirginiabeach.com", + "rank": 7 + }, + { + "link": "https://en.wikipedia.org/wiki/Virginia_Beach,_Virginia", + "title": "Virginia Beach, Virginia - Wikipedia", + "snippet": "Virginia Beach is an independent city located on the southeastern coast of the Commonwealth of Virginia in the United States. As of the 2010 census, the population was 437,994. In 2015, the population was estimated to be 452,745. In 2017 the estimated population was 450,435.", + "visible_link": "https://en.wikipedia.org/wiki/Virginia_Beach,_Virginia", + "rank": 8 + }, + { + "link": "https://www.virginiabeach.com/", + "title": "Virginia Beach - Making your vacation planning …", + "snippet": "Welcome to Virginia Beach, the best oceanfront destination for your vacation on the entire East Coast. We are proud to provide a much needed rest, relaxation, entertainment and life-long memorable experiences to over six million hard working people looking …", + "visible_link": "https://www.virginiabeach.com", + "rank": 9 + } + ] + } + }, + "Minneapolis": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:03 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.200.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Minneapolis", + "title": "Minneapolis – Wikipedia", + "snippet": "Minneapolis [ˌmɪnɪˈæpəlɪs] ist mit rund 382.500 Einwohnern die bevölkerungsreichste Stadt im US-Bundesstaat Minnesota. Zusammen mit St. Paul bildet sie die Metropolregion der Twin Cities mit über 3,5 Millionen Einwohnern (Stand 2016).", + "visible_link": "https://de.wikipedia.org/wiki/Minneapolis", + "rank": 1 + }, + { + "link": "https://www.wetteronline.de/wetter/minneapolis", + "title": "Wetter Minneapolis - aktuelle Wettervorhersage von ...", + "snippet": "Wetter Minneapolis. Das Wetter für Minneapolis im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Minneapolis finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › Mittlerer Westen › Minnesota", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g43323-Activities-Minneapolis_Minnesota.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Minneapolis 2019 (mit ...", + "snippet": "23.02.2019 Top 10 Minneapolis Sehenswürdigkeiten: Hier finden Sie 31.839 Bewertungen und Fotos von Reisenden über 193 Sehenswürdigkeiten, Touren und Ausflüge - alle Minneapolis Aktivitäten auf …", + "visible_link": "www.tripadvisor.de › USA › Minnesota (MN) › Minneapolis", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/Metropolregion_Minneapolis-Saint_Paul", + "title": "Metropolregion Minneapolis-Saint Paul – Wikipedia", + "snippet": "Die Metropolregion Minneapolis-Saint Paul ist ein Gebiet im US-Bundesstaat Minnesota und des westlichen Wisconsins. Sie besteht aus den Twin Cities (Zwillingsstädte) genannten Großstädten Minneapolis und St. Paul sowie umliegenden Städten und Townships.", + "visible_link": "https://de.wikipedia.org/wiki/Metropolregion_Minneapolis-Saint_Paul", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g43323-Activities-Minneapolis_Minnesota.html", + "title": "THE 15 BEST Things to Do in Minneapolis - …", + "snippet": "Book your tickets online for the top things to do in Minneapolis, Minnesota on TripAdvisor: See 31,838 traveler reviews and photos of Minneapolis tourist attractions. Find what to do today, this weekend, or in February. We have reviews of the best places to see in Minneapolis. Visit top …", + "visible_link": "www.tripadvisor.com › … › Minnesota (MN) › Minneapolis", + "rank": 5 + }, + { + "link": "https://www.tripadvisor.de/LocationPhotos-g43323-Minneapolis_Minnesota.html", + "title": "Minneapolis Fotos - Besondere Minneapolis, MN Bilder ...", + "snippet": "Bilder von Minneapolis: Schauen Sie sich 13.499 authentische Fotos und Videos von Wahrzeichen, Hotels und Sehenswürdigkeiten in Minneapolis an, die …", + "visible_link": "www.tripadvisor.de › USA › Minnesota (MN) › Minneapolis", + "rank": 6 + }, + { + "link": "https://www.minneapolis.org/", + "title": "Minneapolis Hotels, Restaurants, Things to Do & …", + "snippet": "Meet the biggest underestimated place in the north. A dramatic riverfront skyline, three professional sports stadiums within 1.3 miles, so much art you’re literally surrounded by …", + "visible_link": "https://www.minneapolis.org", + "rank": 7 + }, + { + "link": "http://deacademic.com/dic.nsf/dewiki/961949", + "title": "Minneapolis - deacademic.com", + "snippet": "Minneapolis [ˌmɪnɪˈæpəlɪs] ist mit rund 382.500 Einwohnern die bevölkerungsreichste Stadt im US-Bundesstaat Minnesota. Zusammen mit St. Paul bildet sie die Metropolregion der Twin Cities.", + "visible_link": "deacademic.com › Deutsch Wikipedia", + "rank": 8 + }, + { + "link": "https://www.zeitzonen.de/usa/minnesota/minneapolis.html", + "title": "Aktuelle Uhrzeit und Datum in Minneapolis | USA ...", + "snippet": "Ok, danke. Cookies erleichtern die Bereitstellung unserer Dienste. Mit der Nutzung unserer Dienste erklären Sie sich damit einverstanden, dass wir Cookies verwenden.", + "visible_link": "https://www.zeitzonen.de/usa/minnesota/minneapolis.html", + "rank": 9 + }, + { + "link": "https://en.wikipedia.org/wiki/Minneapolis", + "title": "Minneapolis - Wikipedia", + "snippet": "Clockwise from top left: Downtown Minneapolis at night, the Mississippi River, Minnehaha Falls, and the skyline from the East Bank.", + "visible_link": "https://en.wikipedia.org/wiki/Minneapolis", + "rank": 10 + } + ] + } + }, + "Tampa": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:06 GMT", + "no_results": false, + "effective_query": "", + "num_results": "17.500.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Tampa", + "title": "Tampa – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/Tampa", + "rank": 1 + }, + { + "link": "http://www.tampa-florida.de/", + "title": "Tampa Florida Reiseführer", + "snippet": "Reiseführer über Tampa Florida mit Informationen zu Sehenswürdigkeiten, Shopping Malls, Outlets, Klima, Wetter, Flughafen, Zeitverschiebung, Einreisebestimmungen", + "visible_link": "www.tampa-florida.de", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g34678-Activities-Tampa_Florida.html", + "title": "Beste Attraktionen in Tampa, FL - tripadvisor.de", + "snippet": "23.02.2019 Top 10 Tampa Sehenswürdigkeiten: Hier finden Sie 65.649 Bewertungen und Fotos von Reisenden über 137 Sehenswürdigkeiten, Touren und Ausflüge - alle Tampa Aktivitäten auf einen Blick.", + "visible_link": "www.tripadvisor.de › USA › Florida (FL) › Tampa", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g34678-Tampa_Florida-Vacations.html", + "title": "Tampa, FL: Tourismus in Tampa - TripAdvisor", + "snippet": "Auf TripAdvisor finden Sie alles für Tampa, Florida: 275.715 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › USA › Florida (FL)", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g34678-Tampa_Florida-Vacations.html", + "title": "Tampa 2019: Best of Tampa, FL Tourism - …", + "snippet": "Tampa is a laid-back city with a vibrant arts scene and plenty of opportunities for adventure. Busch Gardens offers thrills for families and risk-averse adrenaline junkies, as does the domed IMAX theater of the Museum of Science and Industry.", + "visible_link": "www.tripadvisor.com › United States › Florida (FL)", + "rank": 5 + }, + { + "link": "https://www.visittampabay.com/", + "title": "Tampa Florida Vacations | Visit Tampa Bay", + "snippet": "Tampa Bay is FLORIDA'S MOST. The hip, urban heart of Florida’s Gulf coast beats in Tampa Bay. Discover blue skies and sunshine, a sparkling waterfront, world-class chefs, family fun, and a century of Cuban culture – all in Florida’s most diverse travel destination.", + "visible_link": "https://www.visittampabay.com", + "rank": 6 + }, + { + "link": "https://www.zeitzonen.de/usa/florida/tampa.html", + "title": "Aktuelle Uhrzeit und Datum in Tampa | USA - Florida ...", + "snippet": "Ok, danke. Cookies erleichtern die Bereitstellung unserer Dienste. Mit der Nutzung unserer Dienste erklären Sie sich damit einverstanden, dass wir Cookies verwenden.", + "visible_link": "https://www.zeitzonen.de/usa/florida/tampa.html", + "rank": 7 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g34678-Activities-Tampa_Florida.html", + "title": "THE 15 BEST Things to Do in Tampa - 2019 (with …", + "snippet": "Book your tickets online for the top things to do in Tampa, Florida on TripAdvisor: See 65,613 traveler reviews and photos of Tampa tourist attractions. Find what to do today, this weekend, or in February. We have reviews of the best places to see in Tampa. Visit top-rated & must-see attractions.", + "visible_link": "www.tripadvisor.com › United States › Florida (FL) › Tampa", + "rank": 8 + }, + { + "link": "https://www.visitflorida.com/en-us/cities/tampa.html", + "title": "Tampa Florida - Things to Do & Attractions in …", + "snippet": "With its mix of historic architecture and modern landmarks, a culture infused with Cuban and Spanish flavors, vibrant business districts and beautiful waterways, Tampa is …", + "visible_link": "https://www.visitflorida.com/en-us/cities/tampa.html", + "rank": 9 + }, + { + "link": "https://www.tampagov.net/", + "title": "City of Tampa", + "snippet": "TAMPA MUNICIPAL OFFICE BUILDING 306 East Jackson Street Tampa, Florida 33602. 813.274.8211. CONTACT", + "visible_link": "https://www.tampagov.net", + "rank": 10 + } + ] + } + }, + "Corpus Christi": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:08 GMT", + "no_results": false, + "effective_query": "", + "num_results": "39.100.000 Ergebnisse", + "results": [ + { + "link": "https://www.corpus-christi-berlin.de/", + "title": "Corpus Christi Berlin: Home", + "snippet": "Alles Gute und Gottes reichen Segen für 2019! In unserer Gemeinde (wie auch in vielen anderen) hat das neue Jahr mit der Sternsingeraktion begonnen: Kinder singen, segnen und sammeln für Kinder – es war großartig und eine unglaublich liebenswerte und mit so viel Freude durchgeführte Aktion.", + "visible_link": "https://www.corpus-christi-berlin.de", + "rank": 1 + }, + { + "link": "https://www.corpus-christi-berlin.de/gottesdienste/", + "title": "Corpus Christi Berlin: Gottesdienste", + "snippet": "Pfarrkirche Ss. Corpus Christi Berlin Conrad-Blenkle-Str. 64 10407 Berlin: Kirche Mater Dolorosa Greifswalderstr. 18a 10405 Berlin: Montags: 08.00 Uhr Laudes mit Kloster", + "visible_link": "https://www.corpus-christi-berlin.de/gottesdienste", + "rank": 2 + }, + { + "link": "https://www.berlin.de/adressen/kirche/kath-pfarramt-ss-corpus-christi-4f144000b4fc475f0b9f8a00.html", + "title": "Kath Pfarramt Ss. Corpus Christi :: Katholische Kirche ...", + "snippet": "Katholische Kirche: Kath Pfarramt Ss. Corpus Christi, Conrad-Blenkle-Str., Berlin–Prenzlauer Berg – Information zu Kontakt, Öffnungszeiten, Anfahrt und mehr.", + "visible_link": "https://www.berlin.de/adressen/kirche/kath-pfarramt-ss-corpus...", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/Kirche_Ss._Corpus_Christi_(Berlin-Prenzlauer_Berg)", + "title": "Kirche Ss. Corpus Christi (Berlin-Prenzlauer Berg) – Wikipedia", + "snippet": "Die katholische Kirche Ss. Corpus Christi (lat.: Sanctissimum Corpus Christi = ‚Heiligster Leib Christi‘) im Berliner Ortsteil Prenzlauer Berg ist eine vom Architekten Max Hasak im Jahre 1904 errichtete Kirche im neugotischen Stil und befindet sich in der Conrad-Blenkle-Straße 64.", + "visible_link": "https://de.wikipedia.org/wiki/Kirche_Ss._Corpus_Christi_(Berlin...", + "rank": 4 + }, + { + "link": "http://steinmeyer-orgel.corpus-christi-berlin.de/", + "title": "Steinmeyer Orgel Corpus Christi | Auf dem Weg zu neuen Ufern", + "snippet": "Anlässlich der Restaurierung der Steinmeyer-Orgel haben wir es auch geschafft eine gelungene Festschrift zu gestalten, die schon seit einigen Wochen zum Verkauf steht.", + "visible_link": "steinmeyer-orgel.corpus-christi-berlin.de", + "rank": 5 + }, + { + "link": "https://www.erzbistumberlin.de/wir-sind/pfarrgemeinden/kirchen-und-gottesdienstsuche/detail/adr/ss-corpus-christi-55/", + "title": "Erzbistum Berlin: Ss. Corpus Christi", + "snippet": "Adresse: Conrad - Blenkle - Str. 64 10407 Berlin (Pankow) Dekanat: Pankow Seelsorger: Pater Jacinto Weizenmann SCJ (Pfarradministrator) Pfarrei: Ss. Corpus Christi, Berlin-Prenzlauer Berg", + "visible_link": "https://www.erzbistumberlin.de/.../detail/adr/ss-corpus-christi-55", + "rank": 6 + }, + { + "link": "http://www.kita-corpus-christi.de/", + "title": "Kath. Kita Ss. Corpus Christi", + "snippet": "Herzlich willkommen auf der Homepage der Katholische Kindertagesstätte Ss. Corpus Christi . Unsere Adresse lautet: Katholische Kindertagesstätte Ss.", + "visible_link": "www.kita-corpus-christi.de", + "rank": 7 + }, + { + "link": "https://www.wetteronline.de/webcam/corpus-christi", + "title": "Wetter-Webcams in der Region Corpus Christi - Webcams ...", + "snippet": "Wetter-Webcams in der Region Corpus Christi. Unter diesem Menüpunkt können die Wetter-Webcams in der Region Corpus Christi abgerufen werden. Per Webcam gewinnt man stets einen Überblick über das aktuelle Wetter live vor Ort.", + "visible_link": "www.wetteronline.de › … › Südstaaten › Texas › Corpus Christi", + "rank": 8 + }, + { + "link": "http://steinmeyer-orgel.corpus-christi-berlin.de/?p=773", + "title": "Konzert Berliner Orgelpower | Steinmeyer Orgel Corpus Christi", + "snippet": "Die Berliner Orgelpower veranstaltet ihr erstes Konzert auf unserer restaurierten Steinmeyer-Orgel, zum dem wir sie auch herzlich einladen möchten.", + "visible_link": "steinmeyer-orgel.corpus-christi-berlin.de/?p=773", + "rank": 9 + }, + { + "link": "https://www.duden.de/rechtschreibung/Corpus", + "title": "Duden | Cor­pus | Rechtschreibung, Bedeutung, Definition ...", + "snippet": "Definition, Rechtschreibung, Synonyme und Grammatik von 'Corpus' auf Duden online nachschlagen. Wörterbuch der deutschen Sprache.", + "visible_link": "www.duden.de › Wörterbuch", + "rank": 10 + } + ] + } + }, + "Toledo": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:11 GMT", + "no_results": false, + "effective_query": "", + "num_results": "14.700.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Toledo", + "title": "Toledo – Wikipedia", + "snippet": "Geographie. Toledo liegt etwa 100 Meter über dem Ufer des Flusses Tajo, der sich in Mäandern tief in den Felsen der Hochebene der Südmeseta eingeschnitten hat, und beherrscht die Flussquerung, die heute durch eine mittelalterliche Brücke repräsentiert wird.", + "visible_link": "https://de.wikipedia.org/wiki/Toledo", + "rank": 1 + }, + { + "link": "https://www.spain.info/de/que-quieres/ciudades-pueblos/otros-destinos/toledo.html", + "title": "Toledo. Toledo. Was Sie sich ansehen sollten | spain.info ...", + "snippet": "Toledo ist eine der Städte mit den meisten Sehenswürdigkeiten Spaniens. Weil hier über Jahrhunderte hinweg Christen, Muslime und Juden zusammenlebten, ist Toledo …", + "visible_link": "https://www.spain.info/.../ciudades-pueblos/otros-destinos/toledo.html", + "rank": 2 + }, + { + "link": "https://de.wikivoyage.org/wiki/Toledo_(Spanien)", + "title": "Toledo (Spanien) – Reiseführer auf Wikivoyage", + "snippet": "Wenn man in einem Hotel in der Nähe der Altstadt nächtigt, ist es am einfachsten, sich zu Fuß fortzubewegen. In weiten Teilen sind die Gassen und Wege in der Altstadt nur für Fußgänger und Anwohnerfahrzeuge zugelassen.", + "visible_link": "https://de.wikivoyage.org/wiki/Toledo_(Spanien)", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g187489-Toledo_Province_of_Toledo_Castile_La_Mancha-Vacations.html", + "title": "Toledo, Spanien: Tourismus in Toledo - TripAdvisor", + "snippet": "In der Altstadt von Toledo legen Synagogen, Moscheen und Kirchen Zeugnis von der abwechslungsreichen Geschichte dieser mittelalterlichen spanischen Stadt ab. Die Silhouette der Stadt wird von den vier Türmen der 1085 gebauten Festung Alcazar dominiert.", + "visible_link": "www.tripadvisor.de › … › Kastilien-La Mancha › Province of Toledo", + "rank": 4 + }, + { + "link": "https://de.wikipedia.org/wiki/Toledo_(Ohio)", + "title": "Toledo (Ohio) – Wikipedia", + "snippet": "Toledo ist eine Stadt im Lucas County im Nordwesten des US-Bundesstaates Ohio mit knapp 280.000 Einwohnern. Sie liegt südwestlich des Eriesees", + "visible_link": "https://de.wikipedia.org/wiki/Toledo_(Ohio)", + "rank": 5 + }, + { + "link": "http://www.weltkulturerbe.com/weltkulturerbe/europa/toledo.html", + "title": "Toledo: Weltkulturerbe in Spanien", + "snippet": "Toledo ist die Hauptstadt der gleichnamigen spanischen Proviz und beheimatet als solche heute etwas mehr als 80.000 Einwohner. Gemeinsam mit Avila und Segovia ist Toledo eine der bedeutendsten historischen Metropolen in Kastilien.", + "visible_link": "www.weltkulturerbe.com/weltkulturerbe/europa/toledo.html", + "rank": 6 + }, + { + "link": "https://www.red2000.com/spain/toledo/2toledo.html", + "title": "TOLEDO bei Alles über Spanien - red2000.com", + "snippet": "Toledo war eines der bedeutendsten europäischen Zentren während des Mittelalters. Erstmals erwähnt wurde die Stadt von dem römischen Schriftsteller Titus Livius, der Toledo …", + "visible_link": "https://www.red2000.com/spain/toledo/2toledo.html", + "rank": 7 + }, + { + "link": "https://www.wetter.com/spanien/toledo/ES0TL0168.html", + "title": "Wetter Toledo | wetter.com", + "snippet": "In Toledo gibt es am Morgen keine Wolken, die Sonne scheint bei Werten von 2°C. Des Weiteren gibt es mittags und auch abends lockere Bewölkung bei Temperaturen von 11 bis 20°C.", + "visible_link": "www.wetter.com › Europa › Spanien › Südkastilien", + "rank": 8 + }, + { + "link": "https://www.seat.de/modelle/ibiza/uebersicht.html", + "title": "Der SEAT Ibiza – Der Kleinwagen | SEAT", + "snippet": "Freu dich, den SEAT Ibiza zu treffen – den Kleinwagen, der dich bewegen wird. Mit vielen neuen Features, die deinen Tag angenehmer machen!", + "visible_link": "https://www.seat.de/modelle/ibiza/uebersicht.html", + "rank": 9 + }, + { + "link": "https://en.wikipedia.org/wiki/Toledo,_Ohio", + "title": "Toledo, Ohio - Wikipedia", + "snippet": "Toledo (/ t ə ˈ l iː d oʊ /) is a city in and the county seat of Lucas County, Ohio, United States. Toledo is in northwest Ohio, at the western end of Lake Erie bordering the state of Michigan.", + "visible_link": "https://en.wikipedia.org/wiki/Toledo,_Ohio", + "rank": 10 + } + ] + } + }, + "Jersey City": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:14 GMT", + "no_results": false, + "effective_query": "", + "num_results": "130.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Jersey_City", + "title": "Jersey City – Wikipedia", + "snippet": "Jersey City ist eine Stadt im US-Bundesstaat New Jersey in den Vereinigten Staaten mit rund 260.000 Einwohnern (Schätzung 2016, U.S. Census Bureau).", + "visible_link": "https://de.wikipedia.org/wiki/Jersey_City", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Hotels-g46531-Jersey_City_New_Jersey-Hotels.html", + "title": "Hotels in Jersey City - tripadvisor.de", + "snippet": "Beste Hotels in Jersey City bei TripAdvisor: Finden Sie 11.363 Bewertungen von Reisenden, authentische Reisefotos und Top-Angebote für 76 Hotels in Jersey City, NJ.", + "visible_link": "www.tripadvisor.de › USA › New Jersey (NJ) › Jersey City", + "rank": 2 + }, + { + "link": "https://www.hrs.de/hotel/usa/new-jersey/jersey-city/", + "title": "Hotel Jersey City, New Jersey - HRS Hotels in Jersey City ...", + "snippet": "", + "visible_link": "https://www.hrs.de/hotel/usa/new-jersey/jersey-city", + "rank": 3 + }, + { + "link": "https://en.wikipedia.org/wiki/Jersey_City,_New_Jersey", + "title": "Jersey City, New Jersey - Wikipedia", + "snippet": "The City of Jersey was incorporated by an act of the New Jersey Legislature on January 28, 1820, from portions of Bergen Township, while the area was still a part of Bergen County.", + "visible_link": "https://en.wikipedia.org/wiki/Jersey_City,_New_Jersey", + "rank": 4 + }, + { + "link": "https://www.hotel.de/de/ramada-jersey-city/hotel-44583/", + "title": "Hotel RAMADA JERSEY CITY – HOTEL DE", + "snippet": "Hotel RAMADA JERSEY CITY – Jetzt einfach, schell & sicher buchen bei HOTEL DE! Günstige Preise Exklusive Businessrabatte bis zu 30 % NEU: Miles & More Prämienmeilen bei jeder Buchung!", + "visible_link": "https://www.hotel.de/de/ramada-jersey-city/hotel-44583", + "rank": 5 + }, + { + "link": "https://www.holidaycheck.de/hi/ramada-jersey-city/fc554d9c-7dc1-376d-9092-dc5106bb6d7e", + "title": "RAMADA Jersey City (Jersey City) • HolidayCheck (New ...", + "snippet": "Das Ramada Jersey City befindet sich außerhalb von Manhattan in Jersey City. Wir waren schon zweimal dort und würden es jederzeit wieder buchen, da es sehr gut als Ausgangsstation für Manhattan-Besuche geeignet ist.", + "visible_link": "www.holidaycheck.de › … › USA › New Jersey › Jersey City", + "rank": 6 + } + ] + } + }, + "Norfolk": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:17 GMT", + "no_results": false, + "effective_query": "", + "num_results": "14.600.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Norfolk", + "title": "Norfolk – Wikipedia", + "snippet": "Norfolk [ˈnɔːfək] ist eine Grafschaft in Großbritannien in East Anglia im Osten von England. Norfolk grenzt an die Grafschaften Lincolnshire und Cambridgeshire im Westen und Südwesten und Suffolk im …", + "visible_link": "https://de.wikipedia.org/wiki/Norfolk", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Norfolk_(Virginia)", + "title": "Norfolk (Virginia) – Wikipedia", + "snippet": "Norfolk ist eine Stadt im US-Bundesstaat Virginia. Norfolk liegt im Südosten Virginias am Elizabeth River in der Region Hampton Roads. Sie gehört zu keinem County, sondern ist eine kreisfreie Stadt (independent city).", + "visible_link": "https://de.wikipedia.org/wiki/Norfolk_(Virginia)", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g58026-Activities-Norfolk_Virginia.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Norfolk 2019 (mit fotos ...", + "snippet": "23.02.2019 Top 10 Norfolk Sehenswürdigkeiten: Hier finden Sie 11.517 Bewertungen und Fotos von Reisenden über 99 Sehenswürdigkeiten, Touren und Ausflüge - alle Norfolk Aktivitäten auf einen Blick.", + "visible_link": "www.tripadvisor.de › USA › Virginia (VA) › Norfolk", + "rank": 3 + }, + { + "link": "https://aida.de/hafen/norfolk", + "title": "Kreuzfahrt Norfolk - AIDA Hafen Norfolk", + "snippet": "Willkommen in Norfolk! Ob Sie vom südlich gelegenen Miami kommen, gerade aufregende Tage in New York erlebt haben oder eine Atlantiküberquerung von Hamburg aus hinter Ihnen liegt: Norfolk bietet Ihnen einige völlig andere Erlebnisse.", + "visible_link": "https://aida.de/hafen/norfolk", + "rank": 4 + }, + { + "link": "https://www.visitnorfolk.com/", + "title": "Norfolk, VA Travel & Visitor Information | …", + "snippet": "Planning your vacation to Norfolk, Virginia? View the official guide to hotels, events, restaurants and things to do in Norfolk and plan your trip today!", + "visible_link": "https://www.visitnorfolk.com", + "rank": 5 + }, + { + "link": "https://de.wikivoyage.org/wiki/Norfolk", + "title": "Norfolk – Reiseführer auf Wikivoyage", + "snippet": "Norwich Hauptstadt der Grafschaft, schöne mittelalterliche Altstadt und imposante Kathedrale. Cromer Küstenort mit spätviktorianischen Pier. In der Umgebung des Orts Steilklippen, die einen schönen Kontrast zum sonst flachen Land bilden.", + "visible_link": "https://de.wikivoyage.org/wiki/Norfolk", + "rank": 6 + }, + { + "link": "https://www.vdh.de/welpen/mein-welpe/norfolk-terrier", + "title": "Norfolk Terrier » VDH Rasselexikon 2019", + "snippet": "Norfolk Terrier. ist die kippohrige Variante des Norwich Terrier. Die Entstehungsgeschichte beider Rassen ist daher identisch. Bis 1964 galten beide sogar unter dem Namen Norwich Terrier als eine einzige Rasse, deren Vertreter laut Standard entweder Steh- oder Kippohren besitzen durften.", + "visible_link": "https://www.vdh.de/welpen/mein-welpe/norfolk-terrier", + "rank": 7 + } + ] + } + }, + "Garland": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:19 GMT", + "no_results": false, + "effective_query": "", + "num_results": "10.800.000 Ergebnisse", + "results": [ + { + "link": "https://www.garlandproducts.com/", + "title": "Garland Products Ltd - Home", + "snippet": "Garland Products Limited manufacturer of innovative and practical garden products", + "visible_link": "https://www.garlandproducts.com", + "rank": 1 + }, + { + "link": "https://www.dict.cc/?s=garland", + "title": "garland | Übersetzung Englisch-Deutsch", + "snippet": "Kennst du Übersetzungen, die noch nicht in diesem Wörterbuch enthalten sind? Hier kannst du sie vorschlagen! Bitte immer nur genau eine Deutsch-Englisch-Übersetzung eintragen (Formatierung siehe Guidelines), möglichst mit einem guten Beleg im Kommentarfeld.", + "visible_link": "www.dict.cc › Deutsch › Nur in dieser Sprache suchen", + "rank": 2 + }, + { + "link": "https://www.dict.cc/englisch-deutsch/garland.html", + "title": "dict.cc Wörterbuch :: garland :: Englisch-Deutsch-Übersetzung", + "snippet": "Dieses Deutsch-Englisch-Wörterbuch basiert auf der Idee der freien Weitergabe von Wissen. Mehr Informationen! Enthält Übersetzungen von der TU Chemnitz sowie aus Mr Honey's Business Dictionary (Englisch/Deutsch).", + "visible_link": "www.dict.cc › immer › Übersetzungen mit gleichem Wortanfang", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/Judy_Garland", + "title": "Judy Garland – Wikipedia", + "snippet": "Judy Garland war viermal geschieden. Von 1941 bis 1945 war sie mit Songwriter David Rose, von 1945 bis 1951 mit Regisseur Vincente Minnelli, von 1952 bis 1965 mit Showproduzent Sidney Luft und von 1965 bis 1966 mit Schauspieler Mark Herron verheiratet.", + "visible_link": "https://de.wikipedia.org/wiki/Judy_Garland", + "rank": 4 + }, + { + "link": "https://de.wikipedia.org/wiki/Garland_(Texas)", + "title": "Garland (Texas) – Wikipedia", + "snippet": "Garland ist eine Stadt in der Nachbarschaft von Dallas im US-Bundesstaat Texas. Sie liegt fast vollständig im Dallas County – außer kleinerer Teile im Collin County und Rockwall County.", + "visible_link": "https://de.wikipedia.org/wiki/Garland_(Texas)", + "rank": 5 + }, + { + "link": "https://dict.leo.org/englisch-deutsch/garland", + "title": "garland - LEO: Übersetzung im Englisch - Deutsch Wörterbuch", + "snippet": "Lernen Sie die Übersetzung für 'garland' in LEOs Englisch ⇔ Deutsch Wörterbuch. Mit Flexionstabellen der verschiedenen Fälle und Zeiten Aussprache und relevante Diskussionen Kostenloser Vokabeltrainer", + "visible_link": "https://dict.leo.org/englisch-deutsch/garland", + "rank": 6 + } + ] + } + }, + "Scottsdale": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:22 GMT", + "no_results": false, + "effective_query": "", + "num_results": "14.300.000 Ergebnisse", + "results": [ + { + "link": "https://www.tripadvisor.de/Attractions-g31350-Activities-Scottsdale_Arizona.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Scottsdale 2019 (mit ...", + "snippet": "17.02.2019 Top 10 Scottsdale Sehenswürdigkeiten: Hier finden Sie 38.692 Bewertungen und Fotos von Reisenden über 115 Sehenswürdigkeiten, Touren und Ausflüge - alle Scottsdale Aktivitäten auf …", + "visible_link": "www.tripadvisor.de › … › Arizona (AZ) › Zentral-Arizona › Scottsdale", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Scottsdale", + "title": "Scottsdale – Wikipedia", + "snippet": "Scottsdale ist eine Stadt im Maricopa County im US-Bundesstaat Arizona, Vereinigte Staaten, mit fast 250.000 Einwohnern (Schätzung 2016, U.S. Census Bureau).", + "visible_link": "https://de.wikipedia.org/wiki/Scottsdale", + "rank": 2 + }, + { + "link": "https://de.wikipedia.org/wiki/Scottsdale_(Tasmanien)", + "title": "Scottsdale (Tasmanien) – Wikipedia", + "snippet": "Scottsdale ist eine Stadt im Nordosten des australischen Bundesstaates Tasmanien. Sie liegt am Tasman Highway (A3) 63 km nordöstlich von Launceston und 22 km südöstlich der Küstenstadt Bridport.", + "visible_link": "https://de.wikipedia.org/wiki/Scottsdale_(Tasmanien)", + "rank": 3 + }, + { + "link": "https://www.experiencescottsdale.com/", + "title": "Official Travel Site for Scottsdale, Arizona", + "snippet": "Experience Scottsdale uses cookies to ensure that we give you the best experience on our website. By closing this message or continuing to browse the site, you are …", + "visible_link": "https://www.experiencescottsdale.com", + "rank": 4 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/scottsdale/US0AZ0202.html", + "title": "Wetter Scottsdale | wetter.com", + "snippet": "In Scottsdale gibt es am Tag einen wolkenlosen Himmel bei Temperaturen von 4 bis 12°C. In der Nacht ist es klar bei Tiefstwerten von 7°C. Stündliche Vorhersage Scottsdale", + "visible_link": "www.wetter.com › Nordamerika › USA", + "rank": 5 + }, + { + "link": "https://www.wetteronline.de/wetter/scottsdale", + "title": "Wetter Scottsdale - aktuelle Wettervorhersage von WetterOnline", + "snippet": "Wetter Scottsdale. Das Wetter für Scottsdale im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Scottsdale finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › Rocky Mountains › Arizona", + "rank": 6 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g31350-Scottsdale_Arizona-Vacations.html", + "title": "Scottsdale 2019: Best of Scottsdale, AZ Tourism - …", + "snippet": "Scottsdale has more spas per capita than any other city in the U.S.—so whether you’re looking for the latest medi-spa technology or a new-agey, bohemian vibe, there’s sure to be something for you.", + "visible_link": "www.tripadvisor.com › … › Arizona (AZ) › Central Arizona", + "rank": 7 + } + ] + } + }, + "Philadelphia": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:45 GMT", + "no_results": false, + "effective_query": "", + "num_results": "17.300.000 Ergebnisse", + "results": [ + { + "link": "https://www.philadelphia.de/", + "title": "Philadelphia - Home page", + "snippet": "Philadelphia bietet eine große Vielfalt an Rezepten, die inspirieren und das Kochen für dich, deine Familie & Freunde erleichtern.", + "visible_link": "https://www.philadelphia.de", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Philadelphia", + "title": "Philadelphia – Wikipedia", + "snippet": "Philadelphia ist eine Stadt im US-Bundesstaat Pennsylvania. Mit rund 1,6 Millionen Einwohnern (Stand: 2016, Schätzung des U.S. Census Bureau) ist sie die sechstgrößte Stadt der Vereinigten Staaten und die größte des Bundesstaates Pennsylvania.", + "visible_link": "https://de.wikipedia.org/wiki/Philadelphia", + "rank": 2 + }, + { + "link": "https://www.philadelphia.de/Produkte", + "title": "Philadelphia - Produkte", + "snippet": "Philadelphia ist viel mehr als nur Frischkäse. Es gibt eine große Auswahl an verschiedenen Geschmacksrichtungen und Fettstufen, Snacks und Aufstrichen.", + "visible_link": "https://www.philadelphia.de/Produkte", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g60795-Philadelphia_Pennsylvania-Vacations.html", + "title": "Philadelphia, PA: Tourismus in Philadelphia - TripAdvisor", + "snippet": "Philadelphia, eine der historischsten Städte Amerikas, ist ein idealer Ort für einen Wochenendausflug, vorzugsweise über ein langes Wochenende. Besuchen Sie während Ihres Aufenthalts die Liberty Bell und die Independence Hall, in der die Verfassung und die Unabhängigkeitserklärung", + "visible_link": "www.tripadvisor.de › USA › Pennsylvania (PA)", + "rank": 4 + }, + { + "link": "https://wikitravel.org/de/Philadelphia", + "title": "Philadelphia – Wikitravel", + "snippet": "Philadelphia liegt im Südosten Pennsylvanias, am südlichen Rand der Mittel-Atlantik Region der USA. Es ist die sechst größte Stadt des Landes und bildet das …", + "visible_link": "https://wikitravel.org/de/Philadelphia", + "rank": 5 + }, + { + "link": "https://www.moviepilot.de/movies/philadelphia-2", + "title": "Philadelphia | Film 1993 | moviepilot.de", + "snippet": "24.02.1994 · In dem Oscar-prämierten Drama Philadelphia kämpft Tom Hanks als homosexueller HIV-Infizierter für seine Würde und gegen die heimtückische Krankheit AIDS.", + "visible_link": "www.moviepilot.de › … › Fluch der Karibik › Dragon Ball Super: Broly", + "rank": 6 + }, + { + "link": "https://www.visitphilly.com/", + "title": "Visit Philadelphia - Official Visitor and Tourism Site", + "snippet": "Famous as the birthplace of life, liberty and the pursuit of happiness, Philadelphia delivers one destination, five counties and countless things to do: fascinating museums, vibrant parks, national historic sites and famous (and delicious) food.", + "visible_link": "https://www.visitphilly.com", + "rank": 7 + } + ] + } + }, + "Indianapolis": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:48 GMT", + "no_results": false, + "effective_query": "", + "num_results": "16.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Indianapolis", + "title": "Indianapolis – Wikipedia", + "snippet": "Indianapolis [ˌɪndɪəˈnæpəlɪs] ist die Hauptstadt des US-Bundesstaates Indiana in den Vereinigten Staaten von Amerika. Bei der Volkszählung 2010 wurden 829.718 Einwohner in Indianapolis gezählt, was es zur zweitgrößten Stadt im mittleren Westen der USA macht.", + "visible_link": "https://de.wikipedia.org/wiki/Indianapolis", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g37209-Activities-Indianapolis_Indiana.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Indianapolis 2019 (mit ...", + "snippet": "", + "visible_link": "www.tripadvisor.de › USA › Indiana (IN) › Indianapolis", + "rank": 2 + }, + { + "link": "https://de.wikipedia.org/wiki/USS_Indianapolis_(CA-35)", + "title": "USS Indianapolis (CA-35) – Wikipedia", + "snippet": "Aufgrund der hohen Geheimhaltungsstufe der Mission, die unter dem Projektnamen Bowery ablief, war nur sehr wenigen Marinedienststellen der Auftrag bekannt, …", + "visible_link": "https://de.wikipedia.org/wiki/USS_Indianapolis_(CA-35)", + "rank": 3 + }, + { + "link": "https://en.wikipedia.org/wiki/Indianapolis", + "title": "Indianapolis - Wikipedia", + "snippet": "Indianapolis (/ ˌ ɪ n d i ə ˈ n æ p əl ɪ s /), often shortened to Indy, is the state capital and most populous city of the U.S. state of Indiana and the seat of Marion County.", + "visible_link": "https://en.wikipedia.org/wiki/Indianapolis", + "rank": 4 + }, + { + "link": "https://www.wetteronline.de/wetter/indianapolis", + "title": "Wetter Indianapolis - aktuelle Wettervorhersage von ...", + "snippet": "Wetter Indianapolis. Das Wetter für Indianapolis im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Indianapolis finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › Mittlerer Westen › Indiana", + "rank": 5 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g37209-Indianapolis_Indiana-Vacations.html", + "title": "Indianapolis 2019: Best of Indianapolis, IN …", + "snippet": "Indianapolis Tourism: TripAdvisor has 192,704 reviews of Indianapolis Hotels, Attractions, and Restaurants making it your best Indianapolis resource.", + "visible_link": "www.tripadvisor.com › United States › Indiana (IN)", + "rank": 6 + }, + { + "link": "http://www.filmstarts.de/kritiken/235442.html", + "title": "USS Indianapolis: Men of Courage - Film 2016 - filmstarts.de", + "snippet": "1945 wird Captain Charles Butler McVay (Nicolas Cage), Befehlshaber der USS Indianapolis, mit einer heiklen Mission betraut. Sein Schiff soll Bestandteile einer Atombombe transportieren.", + "visible_link": "www.filmstarts.de › Kino › Beste Filme › Filme Kriegsfilm", + "rank": 7 + }, + { + "link": "https://www.zeitzonen.de/usa/indiana/indianapolis.html", + "title": "Aktuelle Uhrzeit und Datum in Indianapolis | USA - Indiana ...", + "snippet": "Ok, danke. Cookies erleichtern die Bereitstellung unserer Dienste. Mit der Nutzung unserer Dienste erklären Sie sich damit einverstanden, dass wir Cookies verwenden.", + "visible_link": "https://www.zeitzonen.de/usa/indiana/indianapolis.html", + "rank": 8 + }, + { + "link": "http://www.filmstarts.de/kritiken/112150.html", + "title": "Indianapolis - Film 1969 - FILMSTARTS.de", + "snippet": "Indianapolis ein Film von James Goldstone mit Paul Newman, Joanne Woodward. Inhaltsangabe: Rennsportfilme sind vor allem wegen jener Action sehenswert, die allein die …", + "visible_link": "www.filmstarts.de › Kino › Beste Filme › Filme Action", + "rank": 9 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g37209-Activities-Indianapolis_Indiana.html", + "title": "THE 15 BEST Things to Do in Indianapolis - …", + "snippet": "Things to Do in Indianapolis, Indiana: See TripAdvisor's 34,379 traveler reviews and photos of Indianapolis tourist attractions. Find what to do today, this weekend, or in March. We have reviews of the best places to see in Indianapolis. Visit top-rated & must-see attractions.", + "visible_link": "www.tripadvisor.com › … › Indiana (IN) › Indianapolis", + "rank": 10 + } + ] + } + }, + "El Paso": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:51 GMT", + "no_results": false, + "effective_query": "", + "num_results": "52.600.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/El_Paso_(Texas)", + "title": "El Paso (Texas) – Wikipedia", + "snippet": "El Paso ist die sechstgrößte Stadt in Texas und der Verwaltungssitz des gleichnamigen El Paso County. In der Statistik des US Census Bureau steht El Paso in …", + "visible_link": "https://de.wikipedia.org/wiki/El_Paso_(Texas)", + "rank": 1 + }, + { + "link": "https://elpaso.de/", + "title": "elpaso.de | American Bar • Restaurant - Kiel", + "snippet": "Die Stadt EL PASO befindet sich an der Grenze zwischen Texas und New Mexico.", + "visible_link": "https://elpaso.de", + "rank": 2 + }, + { + "link": "https://www.elpaso-rothenfelde.de/", + "title": "El Paso - cantina y bar mexicano Start", + "snippet": "Genießen Sie stilvolles mexikanisches Ambiente, leckere Cocktails, schmackhaftes, würziges Essen und die angenehme Gesellschaft von Menschen aller Altersgruppen in unserem großzügigen Restaurant in Bad Rothenfelde im südlichen Landkreis Osnabrück.", + "visible_link": "https://www.elpaso-rothenfelde.de", + "rank": 3 + }, + { + "link": "https://www.wetteronline.de/wetter/el-paso", + "title": "Wetter El Paso - aktuelle Wettervorhersage von WetterOnline", + "snippet": "Wetter El Paso. Das Wetter für El Paso im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region El Paso finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › Südstaaten › Texas", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g60768-El_Paso_Texas-Vacations.html", + "title": "El Paso 2019: Best of El Paso, TX Tourism - …", + "snippet": "For an alternative Texas experience, consider El Paso. Located far from the bright lights of Dallas or San Antonio, in the state's western corner along the sparkling shores of the Rio Grande, El Paso boasts a different feel than its eastern counterparts.", + "visible_link": "www.tripadvisor.com › United States › Texas (TX)", + "rank": 5 + }, + { + "link": "https://steakhaus-el-paso.de/", + "title": "El Paso – Das Steakhaus in Hamminkeln Dingden!", + "snippet": "Schön, dass Sie den Weg zu uns ins Internet gefunden haben. Wir hoffen Ihnen hier alle nützlichen Informationen rund um einen Besuch in unserem Hause bereitgestellt zu haben.", + "visible_link": "https://steakhaus-el-paso.de", + "rank": 6 + }, + { + "link": "http://el-paso-kranenburg.de/", + "title": "Grill-Steakhaus El Paso in Kranenburg - EL PASO", + "snippet": "Wir wollen unserem Namen El Paso gerecht werden und haben uns auf internationale und amerikanische Fleischgerichte spezialisiert.", + "visible_link": "el-paso-kranenburg.de", + "rank": 7 + }, + { + "link": "http://www.elpaso-schwabach.de/", + "title": "El Paso - Das Mexikanische Restaurant und Steakhaus in ...", + "snippet": "El Paso - Das Mexikanische Restaurant in Schwabach. Genießen Sie das stilvolle mexikanisches Ambiente bei einem leckere Cocktails, schmackhaftem, würzigem Essen und die angenehme Gesellschaft von Menschen aller Altersgruppen in unserem …", + "visible_link": "www.elpaso-schwabach.de", + "rank": 8 + }, + { + "link": "https://www.elpasotexas.gov/", + "title": "City of El Paso", + "snippet": "The City’s website is here to help you learn about the City government that serves you and to provide information on a variety of services such as how to apply for a job, pay traffic tickets and water bills or to simply find out about events happening in El Paso.", + "visible_link": "https://www.elpasotexas.gov", + "rank": 9 + } + ] + } + }, + "Baltimore": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:54 GMT", + "no_results": false, + "effective_query": "", + "num_results": "16.400.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Baltimore", + "title": "Baltimore – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/Baltimore", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g60811-Baltimore_Maryland-Vacations.html", + "title": "Baltimore, MD: Tourismus in Baltimore - TripAdvisor", + "snippet": "Auf TripAdvisor finden Sie alles für Baltimore, Maryland: 214.141 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › USA › Maryland (MD)", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Hotels-g60811-Baltimore_Maryland-Hotels.html", + "title": "DIE 10 BESTEN Hotels in Baltimore 2019 ab 55€ (günstige ...", + "snippet": "Beste Hotels in Baltimore bei TripAdvisor: Finden Sie 54.148 Bewertungen von Reisenden, authentische Reisefotos und Top-Angebote für 101 Hotels in Baltimore, MD.", + "visible_link": "www.tripadvisor.de › USA › Maryland (MD) › Baltimore", + "rank": 3 + }, + { + "link": "https://de.wikivoyage.org/wiki/Baltimore", + "title": "Baltimore – Reiseführer auf Wikivoyage", + "snippet": "Baltimore ist die größte Stadt des US-Bundesstaates Maryland, aber nicht seine Hauptstadt (das ist Annapolis). Die Stadt ist berüchtigt als sozioökonomischer Brennpunkt mit hoher Gewaltkriminalität, bietet Besuchern aber auch etliche sehr reizvolle Anziehungspunkte wie z. B. einen der schönsten Innenstadthäfen der USA.", + "visible_link": "https://de.wikivoyage.org/wiki/Baltimore", + "rank": 4 + }, + { + "link": "https://de.wikipedia.org/wiki/Baltimore_(Cork)", + "title": "Baltimore (Cork) – Wikipedia", + "snippet": "Baltimore (irisch Dún na Séad – Burg der Juwelen) ist einer der südlichsten Orte in Irland und eine kleine Hafenstadt südwestlich von Skibbereen im County Cork.", + "visible_link": "https://de.wikipedia.org/wiki/Baltimore_(Cork)", + "rank": 5 + }, + { + "link": "https://www.mapquest.com/us/maryland/baltimore-md-282039684", + "title": "Baltimore, MD - Baltimore, Maryland Map & …", + "snippet": "Get directions, maps, and traffic for Baltimore, MD. Check flight prices and hotel availability for your visit.", + "visible_link": "https://www.mapquest.com/us/maryland/baltimore-md-282039684", + "rank": 6 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g60811-Activities-Baltimore_Maryland.html", + "title": "THE 15 BEST Things to Do in Baltimore - February …", + "snippet": "Book your tickets online for the top things to do in Baltimore, Maryland on TripAdvisor: See 67,854 traveler reviews and photos of Baltimore tourist attractions. Find what to do today, this weekend, or in March. We have reviews of the best places to see in Baltimore. Visit top-rated & must-see attractions.", + "visible_link": "www.tripadvisor.com › United States › Maryland (MD) › Baltimore", + "rank": 7 + }, + { + "link": "https://baltimore.org/", + "title": "Visit Baltimore | Official Travel Website for …", + "snippet": "Get Baltimore trip ideas from the official travel and tourism website for Baltimore Maryland", + "visible_link": "https://baltimore.org", + "rank": 8 + }, + { + "link": "http://www.spiegel.de/panorama/gesellschaft/baltimore-polizei-setzt-ausgangssperre-durch-a-1031180.html", + "title": "Baltimore: Polizei setzt mit massiver Präsenz ...", + "snippet": "Seit wenigen Stunden ist für ganz Baltimore eine Ausgangssperre bis in den frühen Mittwochmorgen in Kraft. Wer nicht auf dem Weg von oder zur Arbeit ist, wer nicht wegen eines Notfalls unterwegs ...", + "visible_link": "www.spiegel.de › Panorama › Gesellschaft › Polizeigewalt", + "rank": 9 + }, + { + "link": "https://nds.wikipedia.org/wiki/Baltimore", + "title": "Baltimore – Wikipedia", + "snippet": "Baltimore is ene Stadt mit densülven Status as en Kreis in’n US-Bundsstaat Maryland. Se hett 651.154 Inwahners (Stand Zensus 2000) op en Rebeet vun 210 km².", + "visible_link": "https://nds.wikipedia.org/wiki/Baltimore", + "rank": 10 + } + ] + } + }, + "Tucson": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:57 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.800.000 Ergebnisse", + "results": [ + { + "link": "https://www.hyundai.de/Modelle/Tucson.html", + "title": "Tucson | Hyundai Deutschland", + "snippet": "1 Unverbindliche Preisempfehlung der Hyundai Motor Deutschland GmbH, Kaiserleipromenade 5, 63067 Offenbach, für den Hyundai Tucson Pure 1.6 GDI, zzgl.", + "visible_link": "https://www.hyundai.de/Modelle/Tucson.html", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Tucson", + "title": "Tucson – Wikipedia", + "snippet": "Tucson [ˈtuːsɑn] ist eine Stadt im US-Bundesstaat Arizona. Die Stadt ist Verwaltungssitz (County Seat) von Pima County. Die Einwohnerzahl beträgt ca. 530.000 (Schätzung 2016, U.S. Census Bureau); in der Metropolregion Tucson leben über 1 Million Einwohner.", + "visible_link": "https://de.wikipedia.org/wiki/Tucson", + "rank": 2 + }, + { + "link": "https://www.autobild.de/marken-modelle/hyundai/tucson/", + "title": "Hyundai Tucson - autobild.de", + "snippet": "Mehr als 37 News, Tests und Videos zum Hyundai Tucson von 2005 (Hyundai Tucson I) bis 2010 (Hyundai Tucson II) finden Sie im Auto-Katalog von autobild.de", + "visible_link": "https://www.autobild.de/marken-modelle/hyundai/tucson", + "rank": 3 + }, + { + "link": "https://www.meinauto.de/hyundai/neuwagen/tucson/", + "title": "Hyundai Tucson 2019: Bis zu 23% Rabatt - MeinAuto.de", + "snippet": "Hyundai Tucson Neuwagen zu günstigen Preisen und hohen Rabatten über das Internet kaufen. Jetzt über MeinAuto.de Autos günstiger sichern & Angebote im Konfigurator vergleichen.", + "visible_link": "https://www.meinauto.de/hyundai/neuwagen/tucson", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g60950-Activities-Tucson_Arizona.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Tucson 2019 (mit fotos ...", + "snippet": "", + "visible_link": "www.tripadvisor.de › USA › Arizona (AZ) › Tucson", + "rank": 5 + }, + { + "link": "https://www.12gebrauchtwagen.de/auto/hyundai/tucson", + "title": "Alle gebrauchten Hyundai Tucson auf einen Blick ...", + "snippet": "Hyundai Tucson - Der kompakte Van für Straße und Gelände. Der Hyundai Tucson ist ein kompakter SUV des südkoreanischen Autobauers Hyundai, dessen erste Generation in Europa ab dem Frühjahr 2005 angeboten wurde.", + "visible_link": "www.12gebrauchtwagen.de › Auto › Hyundai", + "rank": 6 + } + ] + } + }, + "Atlanta": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:00 GMT", + "no_results": false, + "effective_query": "", + "num_results": "18.700.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Atlanta", + "title": "Atlanta – Wikipedia", + "snippet": "Atlanta ist die Hauptstadt sowie die größte Stadt des US-Bundesstaates Georgia und liegt zum größten Teil im Fulton County und zu einem kleineren Teil im DeKalb County.", + "visible_link": "https://de.wikipedia.org/wiki/Atlanta", + "rank": 1 + }, + { + "link": "https://www.atlanta.net/de/", + "title": "Atlanta Reiseführer Deutsch - Willkommen in …", + "snippet": "Atlanta Convention & Visitors Bureau. Established in 1913, Atlanta Convention & Visitors Bureau is the official destination marketing organization for the city and serves to favorably impact Atlanta's economy through conventions and tourism.", + "visible_link": "https://www.atlanta.net/de", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g60898-Atlanta_Georgia-Vacations.html", + "title": "Atlanta, GA: Tourismus in Atlanta - TripAdvisor", + "snippet": "Atlanta wurde schon mit vielen Namen bedacht: \"Hauptstadt des neuen Südens\" und \"die nächste Stadt von internationalem Format\" oder aber \"der beste Ort, um Geschäfte zu machen\".", + "visible_link": "www.tripadvisor.de › USA › Georgia (GA)", + "rank": 3 + }, + { + "link": "https://atlantagmbh.de/", + "title": "Antriebstechnik von ATLANTA - Getriebe & Antriebe für ...", + "snippet": "Innovative Antriebstechnik mit Tradition Willkommen bei ATLANTA Antriebssysteme E. Seidenspinner GmbH & Co. KG. Seit über 80 Jahren überzeugen wir als ein mittelständisches Familienunternehmen, welches sich auf die Entwicklung, Kon- struktion und Herstellung von hochqualitativen Antriebssystemen spezialisiert hat mit exzellenten Lösungen im ...", + "visible_link": "https://atlantagmbh.de", + "rank": 4 + }, + { + "link": "https://www.imdb.com/title/tt4288182/", + "title": "Atlanta (TV Series 2016– ) - IMDb", + "snippet": "06.09.2016 · Based in Atlanta, Earn and his cousin Alfred are trying to make their way up in the world through the rap scene. Along the way they come face to face with social and economic issues touching on race, relationships, poverty, status, and parenthood.", + "visible_link": "https://www.imdb.com/title/tt4288182", + "rank": 5 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g60898-Atlanta_Georgia-Vacations.html", + "title": "Atlanta 2019: Best of Atlanta, GA Tourism - …", + "snippet": "Atlanta has been dubbed everything from the \"capital of the new South\" and \"the next international city\" to \"the best place to do business.\" It's also a great place to visit.", + "visible_link": "www.tripadvisor.com › United States › Georgia (GA)", + "rank": 6 + }, + { + "link": "https://www.tripadvisor.de/Hotels-g60898-Atlanta_Georgia-Hotels.html", + "title": "DIE 10 BESTEN Hotels in Atlanta 2019 ab 63€ (günstige ...", + "snippet": "Beste Hotels in Atlanta bei TripAdvisor: Finden Sie 126.581 Bewertungen von Reisenden, authentische Reisefotos und Top-Angebote für 219 Hotels in Atlanta, GA.", + "visible_link": "www.tripadvisor.de › USA › Georgia (GA) › Atlanta", + "rank": 7 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/atlanta/US0GA0028.html", + "title": "Wetter Atlanta | wetter.com", + "snippet": "In Atlanta fällt am Morgen Regen bei Temperaturen von 14°C. Im weiteren Verlauf des Tages gibt es mittags und auch abends einen wolkenlosen Himmel und die …", + "visible_link": "www.wetter.com › Nordamerika › USA › Georgia", + "rank": 8 + }, + { + "link": "https://de.wikipedia.org/wiki/Atlanta_(Fernsehserie)", + "title": "Atlanta (Fernsehserie) – Wikipedia", + "snippet": "Atlanta ist eine US-amerikanische Fernsehserie, die von Donald Glover entwickelt wurde. Die erste Staffel der Comedyserie wurde zwischen dem 6. September und dem 1.", + "visible_link": "https://de.wikipedia.org/wiki/Atlanta_(Fernsehserie)", + "rank": 9 + } + ] + } + }, + "Tulsa": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:03 GMT", + "no_results": false, + "effective_query": "", + "num_results": "14.900.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Tulsa", + "title": "Tulsa – Wikipedia", + "snippet": "Tulsa [ˈtʌlsə] ist die zweitgrößte Stadt im US-Bundesstaat Oklahoma. Nach Angaben des U.S. Census Bureau für das Jahr 2016 hatte die Stadt etwas mehr als 400.000 Einwohner.", + "visible_link": "https://de.wikipedia.org/wiki/Tulsa", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g51697-Activities-Tulsa_Oklahoma.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Tulsa 2019 (mit fotos ...", + "snippet": "21.02.2019 Top 10 Tulsa Sehenswürdigkeiten: Hier finden Sie 10.287 Bewertungen und Fotos von Reisenden über 136 Sehenswürdigkeiten, Touren und Ausflüge - alle Tulsa Aktivitäten auf einen Blick.", + "visible_link": "www.tripadvisor.de › USA › Oklahoma (OK) › Tulsa", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g51697-Tulsa_Oklahoma-Vacations.html", + "title": "Tulsa 2019: Best of Tulsa, OK Tourism - TripAdvisor", + "snippet": "Tulsa Tourism: TripAdvisor has 78,341 reviews of Tulsa Hotels, Attractions, and Restaurants making it your best Tulsa resource.", + "visible_link": "www.tripadvisor.com › United States › Oklahoma (OK)", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/Rassenunruhen_in_Tulsa", + "title": "Rassenunruhen in Tulsa – Wikipedia", + "snippet": "Bei den Rassenunruhen in Tulsa, Oklahoma, vom 31. Mai und 1. Juni 1921 kamen nach späteren Schätzungen des Bundesstaats bis zu 300 Menschen ums Leben.", + "visible_link": "https://de.wikipedia.org/wiki/Rassenunruhen_in_Tulsa", + "rank": 4 + }, + { + "link": "https://www.mapquest.com/us/oklahoma/tulsa-ok-282040358", + "title": "Tulsa, OK - Tulsa, Oklahoma Map & Directions - …", + "snippet": "Tulsa ( /tʌlsə/) is the second-largest city in the state of Oklahoma and 46th-largest city in the United States. With a population of 391,906 as of the 2010 census, it is the principal municipality of the Tulsa Metropolitan Area, a region with 937,478 (2010) residents in the MSA and 988,454 (2010) in the CSA.", + "visible_link": "https://www.mapquest.com/us/oklahoma/tulsa-ok-282040358", + "rank": 5 + }, + { + "link": "https://www.zeitzonen.de/usa/oklahoma/tulsa.html", + "title": "Aktuelle Uhrzeit und Datum in Tulsa | USA - Oklahoma ...", + "snippet": "Ok, danke. Cookies erleichtern die Bereitstellung unserer Dienste. Mit der Nutzung unserer Dienste erklären Sie sich damit einverstanden, dass wir Cookies verwenden.", + "visible_link": "https://www.zeitzonen.de/usa/oklahoma/tulsa.html", + "rank": 6 + }, + { + "link": "https://en.wikipedia.org/wiki/Tulsa_race_riot", + "title": "Tulsa race riot - Wikipedia", + "snippet": "This section cites its sources but its page references ranges are too broad. Page ranges should be limited to one or two pages when possible. You can help improve this article by …", + "visible_link": "https://en.wikipedia.org/wiki/Tulsa_race_riot", + "rank": 7 + }, + { + "link": "https://www.wunderground.com/weather/us/ok/tulsa", + "title": "Tulsa, OK Forecast | Weather Underground", + "snippet": "Weather Underground provides local & long range weather forecasts, weather reports, maps & tropical weather conditions for locations worldwide.", + "visible_link": "https://www.wunderground.com/weather/us/ok/tulsa", + "rank": 8 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g51697-Activities-Tulsa_Oklahoma.html", + "title": "THE 15 BEST Things to Do in Tulsa - 2019 (with …", + "snippet": "Things to Do in Tulsa, Oklahoma: See TripAdvisor's 10,287 traveler reviews and photos of Tulsa tourist attractions. Find what to do today, this weekend, or in February. We have reviews of the best places to see in Tulsa. Visit top-rated & must-see attractions.", + "visible_link": "www.tripadvisor.com › United States › Oklahoma (OK) › Tulsa", + "rank": 9 + }, + { + "link": "https://www.cityoftulsa.org/", + "title": "City of Tulsa", + "snippet": "Mayor G.T. Bynum and the Community Service Council hosted more than 300 business, nonprofit, faith-based and community leaders at the A Way Home for Tulsa Strategic Planning Kickoff Thursday, February 21, 2019.", + "visible_link": "https://www.cityoftulsa.org", + "rank": 10 + } + ] + } + }, + "Honolulu": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:05 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.800.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Honolulu", + "title": "Honolulu – Wikipedia", + "snippet": "Honolulu ist die Hauptstadt des US-Bundesstaates Hawaii und befindet sich an der Südküste der Insel Oʻahu. Sie ist eine der größten Städte des Pazifiks und der einwohnerreichste Census-designated place der Vereinigten Staaten.", + "visible_link": "https://de.wikipedia.org/wiki/Honolulu", + "rank": 1 + }, + { + "link": "https://www.gohawaii.com/de/islands/oahu/regions/honolulu", + "title": "Honolulu Hawaii - Infos & Tipps zur Hauptstadt | Go Hawaii", + "snippet": "Honolulu ist die Hauptstadt von Hawaii und bietet neben Einkaufsmöglichkeiten auch zahlreiche Sehenswürdigkeiten für Touristen. Hier erfahren Sie mehr!", + "visible_link": "https://www.gohawaii.com/de/islands/oahu/regions/honolulu", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g60982-Activities-Honolulu_Oahu_Hawaii.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Honolulu 2019 (mit fotos ...", + "snippet": "23.02.2019 Top 10 Honolulu Sehenswürdigkeiten: Hier finden Sie 254.463 Bewertungen und Fotos von Reisenden über 279 Sehenswürdigkeiten, Touren und Ausflüge - alle Honolulu …", + "visible_link": "www.tripadvisor.de › USA › Hawaii (HI) › Oahu › Honolulu", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Hotels-g60982-Honolulu_Oahu_Hawaii-Hotels.html", + "title": "DIE 10 BESTEN Hotels in Honolulu 2019 ab 93€ (günstige ...", + "snippet": "Beste Hotels in Honolulu bei TripAdvisor: Finden Sie 180.046 Bewertungen von Reisenden, authentische Reisefotos und Top-Angebote für 147 Hotels in Honolulu, HI.", + "visible_link": "www.tripadvisor.de › USA › Hawaii (HI) › Oahu › Honolulu", + "rank": 4 + }, + { + "link": "https://de.wiktionary.org/wiki/Honolulu", + "title": "Honolulu – Wiktionary", + "snippet": "Anmerkung zum Artikelgebrauch: Der Artikel wird gebraucht, wenn „Honolulu“ in einer bestimmten Qualität, zu einem bestimmten Zeitpunkt oder Zeitabschnitt als Subjekt oder Objekt im Satz steht.", + "visible_link": "https://de.wiktionary.org/wiki/Honolulu", + "rank": 5 + }, + { + "link": "https://www.wetter.com/wetter_aktuell/wettervorhersage/16_tagesvorhersage/vereinigte_staaten_von_amerika/honolulu/US0HI0024.html", + "title": "Wetter Honolulu: 16 Tage Trend | wetter.com", + "snippet": "Der 16 Tage Wetter Trend für Honolulu. Temperatur, Wetterzustand, Sonnenstunden und Regenwahrscheinlichkeit in der 16 Tagesübersicht.", + "visible_link": "www.wetter.com › Nordamerika › USA › Honolulu", + "rank": 6 + }, + { + "link": "https://www.wetteronline.de/wetter/honolulu", + "title": "Wetter Honolulu - aktuelle Wettervorhersage von WetterOnline", + "snippet": "Wetter Honolulu. Das Wetter für Honolulu im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Honolulu finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › Pazifikinseln › Hawaii-Inseln", + "rank": 7 + }, + { + "link": "https://www.zeitzonen.de/usa/hawaii/honolulu.html", + "title": "Aktuelle Uhrzeit und Datum in Honolulu | USA - Hawaii ...", + "snippet": "Ok, danke. Cookies erleichtern die Bereitstellung unserer Dienste. Mit der Nutzung unserer Dienste erklären Sie sich damit einverstanden, dass wir Cookies verwenden.", + "visible_link": "https://www.zeitzonen.de/usa/hawaii/honolulu.html", + "rank": 8 + } + ] + } + }, + "Lexington-Fayette": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:08 GMT", + "no_results": false, + "effective_query": "", + "num_results": "819.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Lexington_(Kentucky)", + "title": "Lexington (Kentucky) – Wikipedia", + "snippet": "Lexington Fayette Urban County Government (englisch) Lexington Convention and Visitors Bureau (englisch) Commerce Lexington Inc. Wirtschaftsinformationen über Lexington (englisch) Weltreiterspiele 2010 (englisch) Normdaten (Geografikum): GND ...", + "visible_link": "https://de.wikipedia.org/wiki/Lexington_(Kentucky)", + "rank": 1 + }, + { + "link": "https://www.lexingtonky.gov/", + "title": "Lexington, Kentucky: Horse Capital of the World®", + "snippet": "The official site of the City of Lexington provides quick and easy access to information about the agencies, programs and services available.", + "visible_link": "https://www.lexingtonky.gov", + "rank": 2 + }, + { + "link": "https://www.wetteronline.de/wetter/lexington-fayette", + "title": "Wetter Lexington-Fayette - aktuelle Wettervorhersage von ...", + "snippet": "Wetter Lexington-Fayette. Das Wetter für Lexington-Fayette im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Lexington-Fayette finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › Mittlerer Westen › Kentucky", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/Lexington_(Pferd)", + "title": "Lexington (Pferd) – Wikipedia", + "snippet": "Lexington (* 17. März 1850 in Lexington, Fayette County, Kentucky; † 1. Juli 1875 in Wallace, Woodford County, Kentucky) war ein Rennpferd und der erfolgreichste Zuchthengst in der zweiten Hälfte des 19.", + "visible_link": "https://de.wikipedia.org/wiki/Lexington_(Pferd)", + "rank": 4 + }, + { + "link": "https://www.etsy.com/de/market/lexington_fayette", + "title": "Lexington fayette | Etsy", + "snippet": "Du suchtest nach: lexington fayette! Auf Etsy gibt es Tausende von handgefertigten Produkten, Vintage-Stücken und Unikaten passend zu deiner Suche. Ganz gleich, wonach du suchst und wo du dich befindest, auf unserem globalen Marktplatz mit Verkäufern aus der ganzen Welt kannst du einzigartige und preisgünstige Optionen finden. Los geht's!", + "visible_link": "https://www.etsy.com/de/market/lexington_fayette", + "rank": 5 + }, + { + "link": "https://www.realtor.com/realestateandhomes-search/Lexington-Fayette_KY", + "title": "Lexington-Fayette, KY Real Estate - Lexington …", + "snippet": "Find homes for sale and real estate in Lexington-Fayette, KY at realtor.com®. Search and filter Lexington-Fayette homes by price, beds, baths and property type.", + "visible_link": "https://www.realtor.com/realestateandhomes-search/Lexington-Fayette_KY", + "rank": 6 + }, + { + "link": "https://www.viamichelin.de/web/Routenplaner/Route-Richmond-40475-Kentucky-Vereinigte_Staaten-nach-Lexington_Fayette-_-Kentucky-Vereinigte_Staaten", + "title": "Routenplaner Richmond - Lexington-Fayette - Entfernung ...", + "snippet": "Dieser Routenplaner berechnet die Strecke, bei der die Entfernung zum Zielort am kürzesten ist, wobei stets auf gut befahrbaren Straßen gefahren wird.", + "visible_link": "www.viamichelin.de › Routenplaner", + "rank": 7 + }, + { + "link": "https://en.wikipedia.org/wiki/Lexington,_Kentucky", + "title": "Lexington, Kentucky - Wikipedia", + "snippet": "Lexington, consolidated with Fayette County and often denoted as Lexington-Fayette, is the second-largest city in Kentucky and the 60th-largest city in the United States.", + "visible_link": "https://en.wikipedia.org/wiki/Lexington,_Kentucky", + "rank": 8 + } + ] + } + }, + "Greensboro": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:10 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.700.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Greensboro_(North_Carolina)", + "title": "Greensboro (North Carolina) – Wikipedia", + "snippet": "Greensboro ist eine Stadt im Guilford County im US-Bundesstaat North Carolina. Greensboro ist die drittgrößte Stadt in North Carolina und die größte Stadt der Piedmont Triad Region.", + "visible_link": "https://de.wikipedia.org/wiki/Greensboro_(North_Carolina)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Greensboro_(Vermont)", + "title": "Greensboro (Vermont) – Wikipedia", + "snippet": "Greensboro ist eine Town im Orleans County des Bundesstaates Vermont in den Vereinigten Staaten mit 762 Einwohnern (laut Volkszählung von 2010). ...", + "visible_link": "https://de.wikipedia.org/wiki/Greensboro_(Vermont)", + "rank": 2 + }, + { + "link": "https://www.wetter.com/wetter_aktuell/wettervorhersage/16_tagesvorhersage/vereinigte_staaten_von_amerika/greensboro/US0NC0274.html", + "title": "Wetter Greensboro: 16 Tage Trend | wetter.com", + "snippet": "Der 16 Tage Wetter Trend für Greensboro. Temperatur, Wetterzustand, Sonnenstunden und Regenwahrscheinlichkeit in der 16 Tagesübersicht.", + "visible_link": "www.wetter.com › Nordamerika › USA › North Carolina › Greensboro", + "rank": 3 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/greensboro/US0NC0274.html", + "title": "Wetter Greensboro | wetter.com", + "snippet": "Wetter heute, 20.02.2019 In Greensboro bleibt der Himmel morgens grau und es regnet bei Temperaturen von 1°C. Gegen später bleibt der Himmel grau und …", + "visible_link": "www.wetter.com › Nordamerika › USA › North Carolina", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g60845-Greensboro_North_Carolina-Vacations.html", + "title": "Greensboro 2019: Best of Greensboro, NC …", + "snippet": "Greensboro, North Carolina loves nightlife, shopping, and horses (8,000 buyers per year go to the Sharpe Family Horse Farm.) Greensboro lives up to its name in …", + "visible_link": "www.tripadvisor.com › United States › North Carolina (NC)", + "rank": 5 + }, + { + "link": "https://www.wetteronline.de/webcam/greensboro", + "title": "Wetter-Webcams in der Region Greensboro - wetteronline.de", + "snippet": "Wetter-Webcams in der Region Greensboro. Unter diesem Menüpunkt können die Wetter-Webcams in der Region Greensboro abgerufen werden. Per Webcam gewinnt man stets einen Überblick über das aktuelle Wetter live vor Ort.", + "visible_link": "www.wetteronline.de › … › North Carolina › Greensboro", + "rank": 6 + }, + { + "link": "https://www.mapquest.com/us/north-carolina/greensboro-nc-282039451", + "title": "Greensboro, NC - Greensboro, North Carolina …", + "snippet": "Get directions, maps, and traffic for Greensboro, NC. Check flight prices and hotel availability for your visit.", + "visible_link": "https://www.mapquest.com/us/north-carolina/greensboro-nc-282039451", + "rank": 7 + } + ] + } + }, + "Chula Vista": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:13 GMT", + "no_results": false, + "effective_query": "", + "num_results": "11.500.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Chula_Vista", + "title": "Chula Vista – Wikipedia", + "snippet": "Chula Vista (aus dem Spanischen für Schöne Aussicht) ist die zweitgrößte Stadt im San Diego County im US-Bundesstaat Kalifornien mit 243.916 Einwohnern auf einer Fläche von 132,7 km².", + "visible_link": "https://de.wikipedia.org/wiki/Chula_Vista", + "rank": 1 + }, + { + "link": "https://trainatchulavista.com/", + "title": "The Olympic Training Center of Chula Vista in San …", + "snippet": "The 155 acre US Olympic Training Center in Chula Vista / San Diego, CA is the first USOC olympic athlete training center master-planned from the ground up.", + "visible_link": "https://trainatchulavista.com", + "rank": 2 + }, + { + "link": "https://en.wikipedia.org/wiki/Chula_Vista,_California", + "title": "Chula Vista, California - Wikipedia", + "snippet": "Chula Vista (/ ˌ tʃ uː l ə ˈ v ɪ s t ə /; English: beautiful view) is the second largest city in the San Diego metropolitan area, the seventh largest city in Southern California, the fourteenth largest city in the state of California, and the 74th-largest city in the United States.", + "visible_link": "https://en.wikipedia.org/wiki/Chula_Vista,_California", + "rank": 3 + }, + { + "link": "https://www.chulavistaresort.com/", + "title": "Wisconsin Dells Water Park Resort Hotel - Chula …", + "snippet": "Welcome to the Chula Vista Resort, the most family friendly of the Wisconsin Dells Resorts. Plan your next vacation and explore all that Chula Vista Resort has to offer.", + "visible_link": "https://www.chulavistaresort.com", + "rank": 4 + }, + { + "link": "https://www.mossychulavista.com/", + "title": "Mossy Nissan Chula Vista - New & Used Nissan …", + "snippet": "Mossy Nissan Chula Vista has been proudly serving San Diego with a HUGE selection and GREAT prices on new & used Nissans since 1982!", + "visible_link": "https://www.mossychulavista.com", + "rank": 5 + }, + { + "link": "https://www.wetteronline.de/wettertrend/chula-vista", + "title": "14-Tage-Wetter Chula Vista - WetterOnline", + "snippet": "Wetterbericht Chula Vista. In den nächsten Tagen zeigt sich das Wetter in der Region Chula Vista zunächst sonnig, am Sonntag dann teils bewölkt, teils freundlich.", + "visible_link": "www.wetteronline.de › … › Kalifornien › Chula Vista", + "rank": 6 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g32210-Chula_Vista_California-Vacations.html", + "title": "Chula Vista 2019: Best of Chula Vista, CA Tourism ...", + "snippet": "Chula Vista Tourism: TripAdvisor has 10,416 reviews of Chula Vista Hotels, Attractions, and Restaurants making it your best Chula Vista resource.", + "visible_link": "www.tripadvisor.com › United States › California (CA)", + "rank": 7 + }, + { + "link": "https://www.otto.de/p/levis-chula-vista-sneaker-mit-gepolstertem-schaftrand-495291166/", + "title": "Levi's® »Chula Vista« Sneaker mit gepolstertem Schaftrand ...", + "snippet": "Levi's® »Chula Vista« Sneaker mit gepolstertem Schaftrand für 74,99€. Modischer Sneaker zum Schnüren, Aus pflegeleichtem Leder bei OTTO", + "visible_link": "https://www.otto.de/p/levis-chula-vista-sneaker-mit-gepolstertem...", + "rank": 8 + }, + { + "link": "http://www.chulavistaca.gov/", + "title": "City of Chula Vista | Home", + "snippet": "Welcome to Chula Vista. Chula Vista means “beautiful view” and there is more to see and do here than you can imagine! Visit Chula Vista for the best in outdoor recreation, family activities, and …", + "visible_link": "www.chulavistaca.gov", + "rank": 9 + }, + { + "link": "https://mychulavistadoctors.com/", + "title": "My Chula Vista Doctors – Southbay San Diego", + "snippet": "We hold ourselves and our staff to the highest standards of professional behavior. Our code of professional ethics includes Honesty, Discretion and Courtesy when communicating with Physicians and Staff, as well as with Patients and the Medical Community.", + "visible_link": "https://mychulavistadoctors.com", + "rank": 10 + } + ] + } + }, + "Durham": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:16 GMT", + "no_results": false, + "effective_query": "", + "num_results": "14.700.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Durham", + "title": "Durham – Wikipedia", + "snippet": "Durham [ˈdʌɹəm] ist eine Stadt in der Grafschaft Durham im Nordosten Englands. Das Stadtzentrum ist umschlossen vom Fluss Wear. Die Stadt hatte im Jahr 2010 knapp 66.000 Einwohner und ist Verwaltungssitz der Unitary Authority County Durham.", + "visible_link": "https://de.wikipedia.org/wiki/Durham", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Durham_(North_Carolina)", + "title": "Durham (North Carolina) – Wikipedia", + "snippet": "Durham ist eine Stadt im zentralen, nördlichen North Carolina. Sie ist der County Seat des Durham County", + "visible_link": "https://de.wikipedia.org/wiki/Durham_(North_Carolina)", + "rank": 2 + }, + { + "link": "https://www.dur.ac.uk/", + "title": "Durham University - Durham University", + "snippet": "One English council is changing its guidance for children with reading difficulties after research by Durham University questioned the value of a dyslexia diagnosis.", + "visible_link": "https://www.dur.ac.uk", + "rank": 3 + }, + { + "link": "https://www.thisisdurham.com/", + "title": "The Official Tourism Website for Durham | An …", + "snippet": "The official tourism site for Durham. Book hotels & accommodation, find places to eat, and things to do in durham. Discover amazing what's on events such as Kynren and Lumiere and stroll through historic Durham market towns to visit Durhams shops.", + "visible_link": "https://www.thisisdurham.com", + "rank": 4 + }, + { + "link": "https://de.wikivoyage.org/wiki/Durham", + "title": "Durham – Reiseführer auf Wikivoyage", + "snippet": "Durham liegt etwas westlich der entlang der von London entlang der englischen Westküste nach Norden bis Edinburgh führenden Autobahn A1(M) und wird von der …", + "visible_link": "https://de.wikivoyage.org/wiki/Durham", + "rank": 5 + }, + { + "link": "https://www.wetter.com/grossbritannien/durham/GB0KC0124.html", + "title": "Wetter Durham | wetter.com", + "snippet": "In Durham gibt es von Tagesbeginn bis zum Nachmittag überwiegend blauen Himmel mit vereinzelten Wolken bei Temperaturen von 5 bis 12°C. Am Abend bleibt in Durham die Wolkendecke geschlossen und die Temperaturen liegen zwischen 9 und 10 Grad.", + "visible_link": "www.wetter.com › Europa › Vereinigtes Königreich › England", + "rank": 6 + }, + { + "link": "https://www.tripadvisor.de/Attraction_Review-g190832-d215357-Reviews-Durham_Cathedral-Durham_County_Durham_England.html", + "title": "Durham Cathedral - Bewertungen und Fotos", + "snippet": "Man kann die Kirche selbst und den dazugehörigen Kreuzgang ohne Zusatzeintritt besichtigen, besonders gut haben mir die Ausstellungsräume im Obergeschoss gefallen, wo wertvolle Klstergegenstände ausgestellt sind.", + "visible_link": "www.tripadvisor.de › … › England › Durham", + "rank": 7 + }, + { + "link": "https://en.wikipedia.org/wiki/Durham,_England", + "title": "Durham, England - Wikipedia", + "snippet": "Durham (/ ˈ d ʌr ə m /, locally / ˈ d ɜːr ə m /) is a historic city and the county town of County Durham in North East England. The city lies on the River Wear, to the west of Sunderland, south of Newcastle upon Tyne and to the north of Darlington.", + "visible_link": "https://en.wikipedia.org/wiki/Durham,_England", + "rank": 8 + } + ] + } + }, + "Hialeah": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:19 GMT", + "no_results": false, + "effective_query": "", + "num_results": "11.400.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Hialeah", + "title": "Hialeah – Wikipedia", + "snippet": "Hialeah ist eine Stadt im Miami-Dade County im US-Bundesstaat Florida mit 224.669 Einwohnern (Stand: 2010). Nach Miami ist Hialeah die größte Stadt des …", + "visible_link": "https://de.wikipedia.org/wiki/Hialeah", + "rank": 1 + }, + { + "link": "http://www.hialeahfl.gov/", + "title": "Hialeah, FL | Official Website", + "snippet": "The City of Hialeah is one of the premier Hispanic markets in the country. Making an investment with the City will increase your brand awareness & reconnect with consumers, positioning your business as a better corporate citizen.", + "visible_link": "www.hialeahfl.gov", + "rank": 2 + }, + { + "link": "https://www.hrs.de/hotels/de/usa/hialeah-florida/", + "title": "Hotel Hialeah, Florida - HRS Hotels in Hialeah, Florida ...", + "snippet": "HRS Preisgarantie mit Geld-zurück-Versprechen: Günstige Hotels in Hialeah, Florida Geprüfte Hotelbewertungen Kostenlose Stornierung Mit Businesstarif 30% Rabatt", + "visible_link": "https://www.hrs.de/hotels/de/usa/hialeah-florida", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/Hialeah_Gardens", + "title": "Hialeah Gardens – Wikipedia", + "snippet": "Geographie. Hialeah Gardens befindet sich etwa 10 km nordwestlich von Miami und grenzt an die Kommunen Hialeah und Medley. Demographische Daten. Laut der Volkszählung 2010 verteilten sich die damaligen 21.744 Einwohner auf 6.629 Haushalte.", + "visible_link": "https://de.wikipedia.org/wiki/Hialeah_Gardens", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g34284-Hialeah_Florida-Vacations.html", + "title": "Hialeah 2019: Best of Hialeah, FL Tourism - …", + "snippet": "Hialeah Tourism: TripAdvisor has 6,787 reviews of Hialeah Hotels, Attractions, and Restaurants making it your best Hialeah resource.", + "visible_link": "www.tripadvisor.com › United States › Florida (FL)", + "rank": 5 + }, + { + "link": "https://context.reverso.net/%C3%BCbersetzung/italienisch-deutsch/Hialeah", + "title": "Hialeah - Deutsch Übersetzung - Italienisch Beispiele ...", + "snippet": "Übersetzung im Kontext von „Hialeah“ in Italienisch-Deutsch von Reverso Context: Debra è al St. Joseph a Hialeah.", + "visible_link": "https://context.reverso.net/übersetzung/italienisch-deutsch/Hialeah", + "rank": 6 + } + ] + } + }, + "North Las Vegas": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:22 GMT", + "no_results": false, + "effective_query": "", + "num_results": "64.700.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/North_Las_Vegas", + "title": "North Las Vegas – Wikipedia", + "snippet": "North Las Vegas ist eine Stadt im Clark County im US-Bundesstaat Nevada. Die Stadt liegt unmittelbar im Großraum Las Vegas und gehört somit zur Metropolregion Las Vegas…", + "visible_link": "https://de.wikipedia.org/wiki/North_Las_Vegas", + "rank": 1 + }, + { + "link": "http://www.cityofnorthlasvegas.com/", + "title": "City of North Las Vegas Official Web Site", + "snippet": "Thank you for visiting the web site of the City of North Las Vegas. Whether you're a business owner thinking about relocating to our city or a resident who wants to pay a bill or sign up for a recreation program in one of our parks, you'll find the information you need.", + "visible_link": "www.cityofnorthlasvegas.com", + "rank": 2 + }, + { + "link": "https://www.premiumoutlets.com/outlet/las-vegas-north", + "title": "Las Vegas Premium Outlets North", + "snippet": "Find a Simon Premium Outlet near you. Shop more for less at outlet fashion brands like Tommy Hilfiger, Adidas, Michael Kors & more.", + "visible_link": "https://www.premiumoutlets.com/outlet/las-vegas-north", + "rank": 3 + }, + { + "link": "https://www.viamichelin.de/web/Hotels/Hotels-North_Las_Vegas-_-Nevada-Vereinigte_Staaten", + "title": "Hotels in North Las Vegas - viamichelin.de", + "snippet": "Hotelreservierung North Las Vegas - Hotel North Las Vegas mit ViaMichelin Finden Sie Ihr Hotel in North Las Vegas mit ViaMichelin: Hotels, Unterkünfte, Campingplätze, Ferienwohnungen, Bed & Breakfast North Las Vegas.", + "visible_link": "www.viamichelin.de › Hotels › Hotels Vereinigte_Staaten", + "rank": 4 + }, + { + "link": "http://worldpopulationreview.com/us-cities/north-las-vegas-population/", + "title": "North Las Vegas, Nevada Population 2019 …", + "snippet": "North Las Vegas, Nevada's estimated population is 242,975 according to the most recent United States census estimates. North Las Vegas, Nevada is the 4th largest city in Nevada based on official 2017 estimates from the US Census Bureau.", + "visible_link": "worldpopulationreview.com › Us Cities", + "rank": 5 + }, + { + "link": "https://en.wikipedia.org/wiki/North_Las_Vegas,_Nevada", + "title": "North Las Vegas, Nevada - Wikipedia", + "snippet": "North Las Vegas is a city in Clark County, Nevada, United States, in the Las Vegas Valley. As of the 2010 census it had a population of 216,961, with an estimated population of 249,180 in 2017. The city was incorporated on May 16, 1946.", + "visible_link": "https://en.wikipedia.org/wiki/North_Las_Vegas,_Nevada", + "rank": 6 + }, + { + "link": "https://www.viamichelin.de/web/Karten-Stadtplan/Karte_Stadtplan-North_Las_Vegas-_-Nevada-Vereinigte_Staaten", + "title": "Karte, Stadtplan North Las Vegas - ViaMichelin", + "snippet": "Sie suchen die Karte oder den Stadtplan von North Las Vegas? ViaMichelin bietet Ihnen die Michelin-Karte North Las Vegas mit Maßstab 1/1 000 000 bis 1/200 000", + "visible_link": "www.viamichelin.de › Karten › Karte Vereinigte_Staaten", + "rank": 7 + }, + { + "link": "https://www.booking.com/city/us/las-vegas.de.html", + "title": "Die 30 besten Hotels in Las Vegas, USA (Ab € 24)", + "snippet": "North Las Vegas, Las Vegas Budget-Hotel Dieses Casino und Hotel in North Las Vegas liegt an der Interstate 15 und verfügt über einen saisonalen Außenpool, einen Whirlpool sowie 5 …", + "visible_link": "https://www.booking.com/city/us/las-vegas.de.html", + "rank": 8 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g45981-Activities-North_Las_Vegas_Nevada.html", + "title": "THE 15 BEST Things to Do in North Las Vegas - …", + "snippet": "Book your tickets online for the top things to do in North Las Vegas, Nevada on TripAdvisor: See 679,213 traveler reviews and photos of North Las Vegas tourist attractions. Find what to do today, this weekend, or in March. We have reviews of the best places to see in North Las Vegas. Visit top-rated & must-see attractions.", + "visible_link": "www.tripadvisor.com › … › Nevada (NV) › North Las Vegas", + "rank": 9 + }, + { + "link": "https://www.lasvegas.com/", + "title": "Las Vegas travel deals on hotels, shows, and …", + "snippet": "Vacation your way with deals at the all-new LasVegas.com. The top site for Las Vegas travel deals on hotels, shows and things to do on your next Vegas vacation.", + "visible_link": "https://www.lasvegas.com", + "rank": 10 + } + ] + } + }, + "Phoenix": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:46 GMT", + "no_results": false, + "effective_query": "", + "num_results": "19.500.000 Ergebnisse", + "results": [ + { + "link": "https://www.phoenix.de/", + "title": "Phoenix", + "snippet": "mensch, amerika! Neue phoenix-Interviewreihe mit ARD-Korrespondent Jan Philipp Burgard – Auftakt mit dem österreichischen Bundeskanzler Sebastian Kurz", + "visible_link": "https://www.phoenix.de", + "rank": 1 + }, + { + "link": "https://www.phoenixcontact.com/online/portal/de?urile=wcm%3apath%3a/dede/web/home", + "title": "PHOENIX CONTACT | Homepage Deutschland", + "snippet": "Phoenix Contact bietet innovative Produkte und Lösungen rund um die industrielle Verbindungstechnik, Automatisierung, Interface-Systeme und Überspannungsschutz.", + "visible_link": "https://www.phoenixcontact.com/online/portal/de", + "rank": 2 + }, + { + "link": "https://www.youtube.com/user/phoenix", + "title": "phoenix - YouTube", + "snippet": "", + "visible_link": "https://www.youtube.com/user/phoenix", + "rank": 3 + }, + { + "link": "https://www.phoenixreisen.com/", + "title": "Kreuzfahrten, Flusskreuzfahrten & Orientreisen von PHOENIX ...", + "snippet": "Kreuzfahrten von PHOENIX REISEN, Ihrem Spezialist für Hochsee Kreuzfahrten, Flusskreuzfahrten, Nilkreuzfahrten und Orientreisen > Sicher und Zufrieden auf jeder Kreuzfahrt!", + "visible_link": "https://www.phoenixreisen.com", + "rank": 4 + }, + { + "link": "https://www.ardmediathek.de/ard/live/Y3JpZDovL3Bob2VuaXguZGUvTGl2ZXN0cmVhbS1waG9lbml4", + "title": "Phoenix - ardmediathek.de", + "snippet": "Phoenix bietet sein Programm als Livestream im Internet an. Bitte beachten Sie, dass bestimmte Sendungen nicht im Livestream übertragen werden. In diesem Fall wird eine Hinweistafel eingeblendet. Der Livestream von Phoenix kann nur innerhalb Deutschlands empfangen werden.", + "visible_link": "https://www.ardmediathek.de/ard/live/Y3JpZDovL3Bob2VuaXguZGUvTGl2...", + "rank": 5 + }, + { + "link": "https://www.zdf.de/sender/phoenix/phoenix-live-beitrag-100.html", + "title": "Phoenix TV-Programm im Livestream - ZDFmediathek", + "snippet": "Phoenix im Livestream: Sehen Sie rund um die Uhr die Sendungen des TV-Programms im Live-TV der ZDFmediathek.", + "visible_link": "https://www.zdf.de/sender/phoenix/phoenix-live-beitrag-100.html", + "rank": 6 + }, + { + "link": "https://de.wikipedia.org/wiki/Phoenix_(Arizona)", + "title": "Phoenix (Arizona) – Wikipedia", + "snippet": "Phoenix auf der Karte der Vereinigten Staaten. Phoenix [ˈfiːnɪks] ist die Hauptstadt und größte Stadt des US-Bundesstaats Arizona.", + "visible_link": "https://de.wikipedia.org/wiki/Phoenix_(Arizona)", + "rank": 7 + }, + { + "link": "http://www.phoenix-online.de/", + "title": "PHOENIX ONLINE | PHOENIX ONLINE", + "snippet": "Apotheke 4.0 – mit PAYBACK digital durchstarten PHOENIX ermöglicht jetzt allen Apotheken die Mitgliedschaft zum reichweitenstärksten deutschen Bonusprogramm PAYBACK und räumt dadurch große Potenziale für Ihr Unternehmen ein.", + "visible_link": "www.phoenix-online.de", + "rank": 8 + }, + { + "link": "https://www.phoenixreisen.com/?pm=uebersicht", + "title": "Kreuzfahrten, Flussreisen & Flüge von PHOENIX REISEN erleben", + "snippet": "PHOENIX REISEN ist der renommierte Veranstalter für Kreuzfahrten, Flusskreuzfahrten und Flussreisen > Sicher und Zufrieden mit Komfort auf jeder Kreuzfahrt", + "visible_link": "https://www.phoenixreisen.com/?pm=uebersicht", + "rank": 9 + } + ] + } + }, + "Jacksonville": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:49 GMT", + "no_results": false, + "effective_query": "", + "num_results": "16.200.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Jacksonville_(Florida)", + "title": "Jacksonville (Florida) – Wikipedia", + "snippet": "Jacksonville ist eine Stadt und zudem der County Seat des Duval County im US-Bundesstaat Florida mit circa 880.000 Einwohnern (Stand: 2016). Im Jahr 1968 wurde die Stadt mit der Countyverwaltung von Duval County zusammengelegt (consolidated city-county).", + "visible_link": "https://de.wikipedia.org/wiki/Jacksonville_(Florida)", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g60805-Activities-Jacksonville_Florida.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Jacksonville 2019 (mit ...", + "snippet": "", + "visible_link": "www.tripadvisor.de › USA › Florida (FL) › Jacksonville", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g60805-Jacksonville_Florida-Vacations.html", + "title": "Jacksonville, FL: Tourismus in Jacksonville - TripAdvisor", + "snippet": "Zwar besteht ein Großteil von Jacksonville aus urbaner Fläche, diese langgezogene Stadt in Floridas Nordosten besitzt jedoch auch Naturschutzgebiet und Wildparks, historische Viertel …", + "visible_link": "www.tripadvisor.de › USA › Florida (FL)", + "rank": 3 + }, + { + "link": "https://www.visitjacksonville.com/", + "title": "Visit Jacksonville: Official Travel Website for ...", + "snippet": "Sink your toes into Jacksonville’s sandy beaches. Explore our abundant waterways. Shop and dine in eclectic neighborhoods. Play on the golf course or relax poolside.", + "visible_link": "https://www.visitjacksonville.com", + "rank": 4 + }, + { + "link": "https://www.wetteronline.de/wetter/jacksonville", + "title": "Wetter Jacksonville - aktuelle Wettervorhersage von ...", + "snippet": "Wetter Jacksonville. Das Wetter für Jacksonville im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Jacksonville finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › Südstaaten › Florida", + "rank": 5 + }, + { + "link": "https://de.wikipedia.org/wiki/Jacksonville_(Texas)", + "title": "Jacksonville (Texas) – Wikipedia", + "snippet": "Geographie. Die Stadt liegt an der Kreuzung des U.S. Highway 69 mit dem U.S. Highway 79 im Nordosten des Cherokee County im mittleren Osten von Texas und hat eine Gesamtfläche von 36,6 km² ohne nennenswerte Wasserfläche.", + "visible_link": "https://de.wikipedia.org/wiki/Jacksonville_(Texas)", + "rank": 6 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/jacksonville/US0FL0233.html", + "title": "Wetter Jacksonville | wetter.com", + "snippet": "In Jacksonville ist es von morgens bis zum Nachmittag locker bewölkt bei Werten von 20 bis zu 24°C. Am Abend ist es in Jacksonville wolkenlos bei Werten von 21 bis zu 22°C.", + "visible_link": "www.wetter.com › Nordamerika › USA › Florida", + "rank": 7 + } + ] + } + }, + "Memphis": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:52 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.900.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Memphis", + "title": "Memphis – Wikipedia", + "snippet": "Dies ist eine Begriffsklärungsseite zur Unterscheidung mehrerer mit demselben Wort bezeichneter Begriffe.", + "visible_link": "https://de.wikipedia.org/wiki/Memphis", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Memphis_(Tennessee)", + "title": "Memphis (Tennessee) – Wikipedia", + "snippet": "Memphis ist die größte Stadt im US-Bundesstaat Tennessee und County-Sitz des Shelby County. Die Stadt liegt im äußersten Südwesten Tennessees am Ostufer des Mississippi River und hat etwa 653.000 Einwohner (Stand: 2016).", + "visible_link": "https://de.wikipedia.org/wiki/Memphis_(Tennessee)", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g55197-Memphis_Tennessee-Vacations.html", + "title": "Memphis, TN: Tourismus in Memphis - TripAdvisor", + "snippet": "Memphis ist eine Pilgerstätte für Leute, die den Geburtsort des Blues, des Soul und des Rock 'n' Roll kennen lernen möchten. In der Beale Street brachte W.C. Handy die ersten Takte Blues-Musik zu Papier.", + "visible_link": "www.tripadvisor.de › USA › Tennessee (TN)", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g55197-Activities-Memphis_Tennessee.html", + "title": "Beste Attraktionen in Memphis, TN - tripadvisor.de", + "snippet": "11.02.2019 Top 10 Memphis Sehenswürdigkeiten: Hier finden Sie 79.666 Bewertungen und Fotos von Reisenden über 120 Sehenswürdigkeiten, Touren und Ausflüge - alle Memphis Aktivitäten auf …", + "visible_link": "www.tripadvisor.de › USA › Tennessee (TN) › Memphis", + "rank": 4 + }, + { + "link": "http://www.us-infos.de/tn-memphis.html", + "title": "US-INFOS.DE: Tourtip Memphis - Tennessee", + "snippet": "Größere Kartenansicht: Heimat des Blues und Geburtsort des Rock 'n' Roll - Memphis war und ist das Herz der Amerikanischen Musik(industrie). Aber die Stadt …", + "visible_link": "www.us-infos.de/tn-memphis.html", + "rank": 5 + }, + { + "link": "https://www.memphis-mississippi.de/", + "title": "memphis-mississippi.de", + "snippet": "INFORMATIONEN FÜR IHRE REISE. Hier steht alles Wichtige über das Reiseziel Memphis & Mississippi — von Elvis Presley in Memphis über Südstaatenvillen …", + "visible_link": "https://www.memphis-mississippi.de", + "rank": 6 + }, + { + "link": "http://www.transfermarkt.de/memphis-depay/profil/spieler/167850", + "title": "Memphis Depay - Spielerprofil 18/19 | Transfermarkt", + "snippet": "Memphis Depay ist ein 25-jähriger Fußballspieler aus Niederlande, (* 13.02.1994 in Moordrecht, Niederlande). Depay spielt seit 2016 bei Olympique Lyon (OL). Er spielt auf der Position ...", + "visible_link": "www.transfermarkt.de/memphis-depay/profil/spieler/167850", + "rank": 7 + }, + { + "link": "https://www.memphistravel.com/", + "title": "Memphis Hotels, Events, & Attractions | Visit …", + "snippet": "Memphis is the Home of the Blues, Soul & Rock 'n' Roll. Memphis Travel is your place to find the best in Memphis attractions, restaurants (and we're not just talkn' barbecue), history, nightlife and other things to …", + "visible_link": "https://www.memphistravel.com", + "rank": 8 + }, + { + "link": "https://en.wikipedia.org/wiki/Memphis,_Tennessee", + "title": "Memphis, Tennessee - Wikipedia", + "snippet": "Memphis is a city located along the Mississippi River in southwestern Shelby County, Tennessee, United States. The 2017 city population was 652,236, making Memphis the 25th largest city in …", + "visible_link": "https://en.wikipedia.org/wiki/Memphis,_Tennessee", + "rank": 9 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g55197-Memphis_Tennessee-Vacations.html", + "title": "Memphis 2019: Best of Memphis, TN Tourism - …", + "snippet": "Memphis is a pilgrimage for those wanting to visit the birthplace of the blues, of soul and of rock 'n' roll. On Beale Street, W.C. Handy put down on paper the first written blues music.", + "visible_link": "www.tripadvisor.com › United States › Tennessee (TN)", + "rank": 10 + } + ] + } + }, + "Oklahoma City": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:54 GMT", + "no_results": false, + "effective_query": "", + "num_results": "115.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Oklahoma_City", + "title": "Oklahoma City – Wikipedia", + "snippet": "Oklahoma City ist die Hauptstadt des US-amerikanischen Bundesstaates Oklahoma und dessen wirtschaftliches und kulturelles Zentrum. Die Stadt ist County Seat des gleichnamigen Oklahoma County.", + "visible_link": "https://de.wikipedia.org/wiki/Oklahoma_City", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g51560-Oklahoma_City_Oklahoma-Vacations.html", + "title": "Oklahoma City, OK: Tourismus in Oklahoma City - TripAdvisor", + "snippet": "Auf TripAdvisor finden Sie alles für Oklahoma City, Oklahoma: 111.587 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › USA › Oklahoma (OK)", + "rank": 2 + }, + { + "link": "https://en.wikipedia.org/wiki/Oklahoma_City", + "title": "Oklahoma City - Wikipedia", + "snippet": "Oklahoma City was settled on April 22, 1889, when the area known as the \"Unassigned Lands\" was opened for settlement in an event known as \"The Land Run\". Some 10,000 homesteaders settled the area that would become the capital of Oklahoma.", + "visible_link": "https://en.wikipedia.org/wiki/Oklahoma_City", + "rank": 3 + }, + { + "link": "https://www.visitokc.com/", + "title": "Oklahoma City Hotels, Restaurants, Events & …", + "snippet": "When you visit Oklahoma City you'll find the very best of cuisine, attractions, things to do, family fun, and outdoor adventures. Start planning your trip and find places to stay, explore events and festivals, taste the local fare, and get a free guide visitors!", + "visible_link": "https://www.visitokc.com", + "rank": 4 + }, + { + "link": "https://www.nba.com/thunder/", + "title": "Oklahoma City Thunder | The Official Site of the …", + "snippet": "27.02.2019 · The official site of the Oklahoma City Thunder. Includes news, scores, schedules, statistics, photos and video.", + "visible_link": "https://www.nba.com/thunder", + "rank": 5 + }, + { + "link": "https://en.wikipedia.org/wiki/Oklahoma_City_bombing", + "title": "Oklahoma City bombing - Wikipedia", + "snippet": "The Oklahoma City bombing was a domestic terrorist truck bombing on the Alfred P. Murrah Federal Building in downtown Oklahoma City, Oklahoma, United States on April 19, 1995.", + "visible_link": "https://en.wikipedia.org/wiki/Oklahoma_City_bombing", + "rank": 6 + } + ] + } + }, + "Fresno": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:56 GMT", + "no_results": false, + "effective_query": "", + "num_results": "14.300.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Fresno", + "title": "Fresno – Wikipedia", + "snippet": "Fresno ist eine Stadt im Fresno County im US-Bundesstaat Kalifornien, am Fuße der Sierra Nevada. Das Stadtgebiet hat eine Größe von 271,4 km 2.", + "visible_link": "https://de.wikipedia.org/wiki/Fresno", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g32414-Activities-Fresno_California.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Fresno 2019 (mit fotos ...", + "snippet": "11.02.2019 Top 10 Fresno Sehenswürdigkeiten: Hier finden Sie 3.465 Bewertungen und Fotos von Reisenden über 55 Sehenswürdigkeiten, Touren und Ausflüge - alle Fresno Aktivitäten auf einen Blick.", + "visible_link": "www.tripadvisor.de › USA › Kalifornien › Fresno", + "rank": 2 + }, + { + "link": "https://www.fresno.gov/", + "title": "City of Fresno | Welcome to Fresno, CA", + "snippet": "Mayor Lee Brand and Fresno City Manager Wilma Quan today announced that Gregory Barfield has been named the City of Fresno’s new Director of Transportation, effective Monday.", + "visible_link": "https://www.fresno.gov", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g32414-Fresno_California-Vacations.html", + "title": "Fresno, Kalifornien: Tourismus in Fresno - TripAdvisor", + "snippet": "Auf TripAdvisor finden Sie alles für Fresno, Kalifornien: 33.005 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › USA › Kalifornien", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g32414-Fresno_California-Vacations.html", + "title": "Fresno 2019: Best of Fresno, CA Tourism - …", + "snippet": "Fresno Tourism: TripAdvisor has 33,052 reviews of Fresno Hotels, Attractions, and Restaurants making it your best Fresno resource.", + "visible_link": "www.tripadvisor.com › United States › California (CA)", + "rank": 5 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/fresno/US5350937.html", + "title": "Wetter Fresno | wetter.com", + "snippet": "In Fresno wird vormittags und auch am Nachmittag die Sonne von einzelnen Wolken verdeckt bei Temperaturen von 4 bis 11°C. Am Abend ist es regnerisch bei Werten von 6 bis zu 8°C.", + "visible_link": "www.wetter.com › Nordamerika › USA › Kalifornien", + "rank": 6 + }, + { + "link": "https://de.wikipedia.org/wiki/Fresno_County", + "title": "Fresno County – Wikipedia", + "snippet": "Geschichte. Die Gegend des heutigen Countys war früher eine trockene Wüste. Das County wurde 1856 aus Teilen der Countys Mariposa County, Merced County und Tulare County gegründet. 1861 wurden Teile des Countys an Mono County und 1861 an Madera County abgegeben.", + "visible_link": "https://de.wikipedia.org/wiki/Fresno_County", + "rank": 7 + }, + { + "link": "https://www.mapquest.com/us/california/fresno-ca-282039231", + "title": "Fresno, CA - Fresno, California Map & Directions - …", + "snippet": "Fresno ( /frɛznoʊ/ frez-noh) is a city in California, United States, the county seat of Fresno County. As of the 2010 census, the city' s population was 510,365, making it the fifth largest city in California, the largest inland city in California, and the 34th largest in the nation.", + "visible_link": "https://www.mapquest.com/us/california/fresno-ca-282039231", + "rank": 8 + }, + { + "link": "https://www.co.fresno.ca.us/", + "title": "County of Fresno | Home", + "snippet": "Department of Social Services warns of EBT-related social media misinformation. February CalFresh benefits to be issued early for most EBT clients", + "visible_link": "https://www.co.fresno.ca.us", + "rank": 9 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g32414-Activities-Fresno_California.html", + "title": "THE 15 BEST Things to Do in Fresno - February …", + "snippet": "Things to Do in Fresno, California: See TripAdvisor's 3,492 traveler reviews and photos of Fresno tourist attractions. Find what to do today, this weekend, or in February. We have reviews of the best places to see in Fresno. Visit top-rated & must-see attractions.", + "visible_link": "www.tripadvisor.com › United States › California (CA) › Fresno", + "rank": 10 + } + ] + } + }, + "Colorado Springs": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:59 GMT", + "no_results": false, + "effective_query": "", + "num_results": "85.400.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Colorado_Springs", + "title": "Colorado Springs – Wikipedia", + "snippet": "Colorado Springs ist mit rund 465.000 Einwohnern (Schätzung 2016, U.S. Census Bureau) die zweitgrößte Stadt des US-Bundesstaates Colorado und liegt rund 100 km südlich von Denver an den östlichen Ausläufern der Rocky Mountains – am Fuß des Pikes Peak.", + "visible_link": "https://de.wikipedia.org/wiki/Colorado_Springs", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g33364-Colorado_Springs_El_Paso_County_Colorado-Vacations.html", + "title": "Colorado Springs, CO: Tourismus in Colorado Springs ...", + "snippet": "Die legendäre Westernstadt Colorado Springs liegt im Herzen von Colorado, nur 110 km von Denver entfernt an den Ausläufern der Rocky Mountains.", + "visible_link": "www.tripadvisor.de › USA › Colorado (CO) › El Paso County", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g33364-Activities-Colorado_Springs_El_Paso_County_Colorado.html", + "title": "THE 15 BEST Things to Do in Colorado Springs - …", + "snippet": "Book your tickets online for the top things to do in Colorado Springs, Colorado on TripAdvisor: See 48,202 traveler reviews and photos of Colorado Springs tourist attractions. Find what to do today, this weekend, or in February. We have reviews of the best places to see in Colorado Springs. Visit top-rated & must-see attractions.", + "visible_link": "www.tripadvisor.com › … › El Paso County › Colorado Springs", + "rank": 3 + }, + { + "link": "https://en.wikipedia.org/wiki/Colorado_Springs,_Colorado", + "title": "Colorado Springs, Colorado - Wikipedia", + "snippet": "Colorado Springs is a home rule municipality that is the largest city by area in Colorado as well as the county seat and the most populous municipality of El Paso County, Colorado, United States.", + "visible_link": "https://en.wikipedia.org/wiki/Colorado_Springs,_Colorado", + "rank": 4 + }, + { + "link": "http://www.usatourist.com/deutsch/destinations/colorado/coloradosprings/colorado-springs-main.html", + "title": "Colorado Springs in Colorado - usatourist.com", + "snippet": "Colorado Springs, Colorado liegt an der östlichen Front der Colorado Rockies, 106 km südlich von Denver und 448 km nördlich von Albuquerque, New Mexico.", + "visible_link": "www.usatourist.com/deutsch/destinations/colorado/coloradosprings/...", + "rank": 5 + }, + { + "link": "https://www.wetter.com/wetter_aktuell/wettervorhersage/16_tagesvorhersage/vereinigte_staaten_von_amerika/colorado_springs/US0CO0076.html", + "title": "Wetter Colorado Springs: 16 Tage Trend | wetter.com", + "snippet": "Der 16 Tage Wetter Trend für Colorado Springs. Temperatur, Wetterzustand, Sonnenstunden und Regenwahrscheinlichkeit in der 16 Tagesübersicht.", + "visible_link": "www.wetter.com › Nordamerika › USA › Colorado Springs", + "rank": 6 + }, + { + "link": "https://de.wikipedia.org/wiki/Colorado", + "title": "Colorado – Wikipedia", + "snippet": "Auch Colorado Springs ist mit Direktflügen zu den Drehkreuzen Los Angeles, Dallas und Minneapolis an den internationalen Flugverkehr angeschlossen, während in der Gebirgsregion insbesondere Grand Junction, Gunnison, Durango und Aspen bedeutende Regionalflughäfen – mit saisonaler Anbindung an den Flugfernverkehr – sind.", + "visible_link": "https://de.wikipedia.org/wiki/Colorado", + "rank": 7 + }, + { + "link": "https://www.visitcos.com/", + "title": "Colorado Springs Official Vacation Guide - Visit …", + "snippet": "Colorado Springs Airport. Get to the fun faster. Spend your vacation with the people you love, not in long lines and heavy traffic. When you fly in and out of the Colorado Springs Airport (COS), you get to the fun faster and avoid the hassles of a bigger airport.", + "visible_link": "https://www.visitcos.com", + "rank": 8 + }, + { + "link": "https://www.tripadvisor.de/LocationPhotos-g33364-Colorado_Springs_El_Paso_County_Colorado.html", + "title": "Colorado Springs Fotos - Besondere Colorado Springs, El ...", + "snippet": "Bilder von Colorado Springs: Schauen Sie sich 27.559 authentische Fotos und Videos von Wahrzeichen, Hotels und Sehenswürdigkeiten in Colorado Springs an, die von TripAdvisor-Mitgliedern aufgenommen wurden.", + "visible_link": "www.tripadvisor.de › … › El Paso County › Colorado Springs", + "rank": 9 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g33364-Colorado_Springs_El_Paso_County_Colorado-Vacations.html", + "title": "Colorado Springs 2019: Best of Colorado Springs, …", + "snippet": "A crossroads for historians, sportsmen, architects, artists and gourmands, Colorado Springs offers a delightful mix of Western charms. Sunny skies and crisp mountain air make it a perfect place for a golf outing, extreme sports or a picnic in one of the many, many well-maintained parks.", + "visible_link": "www.tripadvisor.com › … › Colorado (CO) › El Paso County", + "rank": 10 + } + ] + } + }, + "Cleveland": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:03 GMT", + "no_results": false, + "effective_query": "", + "num_results": "16.500.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Cleveland", + "title": "Cleveland – Wikipedia", + "snippet": "Cleveland liegt im Nordosten von Ohio am Südufer des Eriesees, 150 km Luftlinie von Toledo am westlichen und 280 km von Buffalo am östlichen Ende des Sees entfernt sowie rund 145 km südöstlich von Detroit und knapp 100 km westlich der Grenze von Ohio zu Pennsylvania.", + "visible_link": "https://de.wikipedia.org/wiki/Cleveland", + "rank": 1 + }, + { + "link": "https://www.cleveland.com/", + "title": "Cleveland OH Local News, Breaking News, Sports …", + "snippet": "Get the latest Cleveland, OH local news, sports news & US breaking news. View daily Northeast Ohio weather updates, watch videos and photos, join the discussion in forums. Find more news articles ...", + "visible_link": "https://www.cleveland.com", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g50207-Cleveland_Ohio-Vacations.html", + "title": "Cleveland, OH: Tourismus in Cleveland - TripAdvisor", + "snippet": "Cleveland ist eine Stadt mit vielen Gesichtern: Besuchen Sie z. B. die Rock and Roll Hall of Fame und erfahren Sie mehr über die dort aufgenommenen Musiklegenden oder sehen Sie sich im Cleveland Museum of Art Bilder von Monet und Picasso an, wenn Sie ein …", + "visible_link": "www.tripadvisor.de › USA › Ohio (OH)", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/Cleveland_Cavaliers", + "title": "Cleveland Cavaliers – Wikipedia", + "snippet": "Die Cleveland Cavaliers sind ein Team der nordamerikanischen Basketball-Profiliga NBA. Ihre Heimspiele trägt das Franchise in der Quicken Loans Arena (auch „The Q“ genannt) in Cleveland…", + "visible_link": "https://de.wikipedia.org/wiki/Cleveland_Cavaliers", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g50207-Cleveland_Ohio-Vacations.html", + "title": "Cleveland 2019: Best of Cleveland, OH Tourism - …", + "snippet": "Whether rocking out to music legends inside the Rock and Roll Hall of Fame or viewing Monets and Picassos at the Cleveland Museum of Art, Cleveland is a …", + "visible_link": "www.tripadvisor.com › United States › Ohio (OH)", + "rank": 5 + }, + { + "link": "https://en.wikipedia.org/wiki/Cleveland", + "title": "Cleveland - Wikipedia", + "snippet": "Cleveland (/ ˈ k l iː v l ə n d / KLEEV-lənd) is a major city in the U.S. state of Ohio, and the county seat of Cuyahoga County. The city proper has a population of 388,072, making it the 51st-largest city in the United States, and the second-largest city in Ohio.", + "visible_link": "https://en.wikipedia.org/wiki/Cleveland", + "rank": 6 + }, + { + "link": "https://www.serienjunkies.de/cleveland/", + "title": "The Cleveland Show Episodenguide, Streams und News zur Serie", + "snippet": "Cleveland: Cleveland Brown, eine afroamerikanische Figur, die die entsprechenden Stereotypen durch den Kakao zieht, ist der ausgeglichenste aus dem Freundeskreis von Family Guy-Patriarch Peter ...", + "visible_link": "www.serienjunkies.de › Serien", + "rank": 7 + }, + { + "link": "http://www.espn.com/nba/team/_/name/cle/cleveland-cavaliers", + "title": "Cleveland Cavaliers Basketball - Cavaliers News, …", + "snippet": "Get the latest Cleveland Cavaliers news, scores, stats, standings, rumors, and more from ESPN.", + "visible_link": "www.espn.com/nba/team/_/name/cle/cleveland-cavalier", + "rank": 8 + } + ] + } + }, + "Aurora": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:06 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.300.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Aurora", + "title": "Aurora – Wikipedia", + "snippet": "Dies ist eine Begriffsklärungsseite zur Unterscheidung mehrerer mit demselben Wort bezeichneter Begriffe.", + "visible_link": "https://de.wikipedia.org/wiki/Aurora", + "rank": 1 + }, + { + "link": "https://www.finanzen.net/aktien/Aurora_Cannabis-Aktie", + "title": "AURORA CANNABIS AKTIE - finanzen.net", + "snippet": "Die Aurora Cannabis Inc Aktie wird unter der ISIN CA05156X1087 an den Börsen Frankfurt, Düsseldorf, München, Stuttgart, Hamburg, Berlin, Toronto, New York, NYSE MKT, NYSE Arca, CTA Chicago, CTA ...", + "visible_link": "www.finanzen.net › Aktien", + "rank": 2 + }, + { + "link": "https://www.aurora-mehl.de/", + "title": "Aurora-Mehl", + "snippet": "AURORA - die deutsche Traditionsmarke mit dem Sonnenstern. Ob für Biskuit-, Hefe oder Mürbeteig – wir haben für jedes Rezept das passende Mehl für Sie!", + "visible_link": "https://www.aurora-mehl.de", + "rank": 3 + }, + { + "link": "https://www.youtube.com/channel/UCNjHgaLpdy1IMNK57pYiKiQ", + "title": "AURORA - YouTube", + "snippet": "", + "visible_link": "https://www.youtube.com/channel/UCNjHgaLpdy1IMNK57pYiKiQ", + "rank": 4 + }, + { + "link": "https://www.aurora-music.com/", + "title": "AURORA | OFFICIAL WEBSITE", + "snippet": "AURORA's Official Website featuring Music, Videos, Live Dates and more. New EP Running with the Wolves is out now.", + "visible_link": "https://www.aurora-music.com", + "rank": 5 + }, + { + "link": "https://www.universal-music.de/aurora", + "title": "Aurora | Start - Universal Music Group Deutschland", + "snippet": "Hol Dir alle Videos, News und Tourdaten von Aurora, lies die Biografie, hör in die neuesten Tracks rein und sei immer topinformiert über Aurora auf", + "visible_link": "https://www.universal-music.de/aurora", + "rank": 6 + }, + { + "link": "https://skylum.com/de/aurorahdr", + "title": "Aurora HDR 2019 - skylum.com", + "snippet": "Das brandneue Aurora HDR 2018 für Mac & Windows steht nun für die Vorbestellung zur Verfügung. Dutzende von neuen Tools und Funktionen, um Ihnen atemberaubende Fotos zu schaffen helfen, die Sie nie für denkbar gehalten haben.", + "visible_link": "https://skylum.com/de/aurorahdr", + "rank": 7 + }, + { + "link": "https://www.ariva.de/aurora_cannabis-aktie", + "title": "Aurora Cannabis Aktie - ariva.de", + "snippet": "lll Aktueller Realtimekurs der AURORA CANNABIS Aktie (A12GS7/CA05156X1087) Chart, Nachrichten, Analysen, Fundamentaldaten jetzt einfach bei ariva.de ansehen.", + "visible_link": "https://www.ariva.de/aurora_cannabis-aktie", + "rank": 8 + }, + { + "link": "https://en.wikipedia.org/wiki/Aurora", + "title": "Aurora - Wikipedia", + "snippet": "", + "visible_link": "https://en.wikipedia.org/wiki/Aurora", + "rank": 9 + }, + { + "link": "https://www.auroramj.com/", + "title": "Canadian Medical Marijuana Producer | Aurora …", + "snippet": "Wellness starts with Aurora. Our award-winning support staff, experienced cultivators, and network of healthcare practitioners are here to help remove barriers to medical cannabis.", + "visible_link": "https://www.auroramj.com", + "rank": 10 + } + ] + } + }, + "Pittsburgh": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:08 GMT", + "no_results": false, + "effective_query": "", + "num_results": "18.300.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Pittsburgh", + "title": "Pittsburgh – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/Pittsburgh", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g53449-Pittsburgh_Pennsylvania-Vacations.html", + "title": "Pittsburgh, PA: Tourismus in Pittsburgh - TripAdvisor", + "snippet": "Die Stadt mag zwar einst auf Stahl und Kohle aufgebaut worden sein und man findet auch oft die Namen \"Mellon\" und \"Carnegie\" in der Stadt, mittlerweile hat Pittsburgh jedoch diese industrielle Vergangenheit weit hinter sich gelassen.", + "visible_link": "www.tripadvisor.de › USA › Pennsylvania (PA)", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g53449-Activities-Pittsburgh_Pennsylvania.html", + "title": "2019 DIE TOP 10 Sehenswürdigkeiten in Pittsburgh Februar ...", + "snippet": "", + "visible_link": "www.tripadvisor.de › USA › Pennsylvania (PA) › Pittsburgh", + "rank": 3 + }, + { + "link": "https://de.wikivoyage.org/wiki/Pittsburgh", + "title": "Pittsburgh – Reiseführer auf Wikivoyage", + "snippet": "Pittsburgh ist nach Philadelphia die zweitgrößte Stadt im amerikanischen Bundesstaat Pennsylvania. Pittsburgh bietet einige Top-Sehenswürdigkeiten, darunter mehrere hochrangige Museen, das größte Vogelhaus und das nach Meinung vieler Amerikaner spektakulärste Stadtpanorama der …", + "visible_link": "https://de.wikivoyage.org/wiki/Pittsburgh", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g53449-Pittsburgh_Pennsylvania-Vacations.html", + "title": "Pittsburgh 2019: Best of Pittsburgh, PA Tourism - …", + "snippet": "Pittsburgh has been remade and reimagined. Think 24 miles of riverfront trails, beautiful parks and historic attractions. Home to 90 neighborhoods, the ‘Burgh feels authentic and unpretentious.", + "visible_link": "www.tripadvisor.com › United States › Pennsylvania (PA)", + "rank": 5 + }, + { + "link": "https://en.wikipedia.org/wiki/Pittsburgh", + "title": "Pittsburgh - Wikipedia", + "snippet": "", + "visible_link": "https://en.wikipedia.org/wiki/Pittsburgh", + "rank": 6 + }, + { + "link": "https://www.wetteronline.de/wetter/pittsburgh", + "title": "Wetter Pittsburgh - aktuelle Wettervorhersage von WetterOnline", + "snippet": "Wetter Pittsburgh. Das Wetter für Pittsburgh im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Pittsburgh finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › US-Ostküste › Pennsylvania", + "rank": 7 + }, + { + "link": "http://www.spiegel.de/politik/ausland/pittsburgh-donald-trump-besucht-us-stadt-nach-attentat-in-synagoge-a-1236013.html", + "title": "Pittsburgh: Donald Trump besucht US-Stadt nach Attentat in ...", + "snippet": "Nach Attentat in Synagoge Hunderte demonstrieren gegen Trump-Besuch in Pittsburgh. Elf Menschen starben bei dem Massaker in einer US-Synagoge, nun reiste Präsident Trump mit seiner Familie nach ...", + "visible_link": "www.spiegel.de › Politik › Ausland › Donald Trump", + "rank": 8 + } + ] + } + }, + "Newark": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:11 GMT", + "no_results": false, + "effective_query": "", + "num_results": "14.100.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Newark_Liberty_International_Airport", + "title": "Newark Liberty International Airport – Wikipedia", + "snippet": "Verkehrsanbindung. Newark verfügt über einen Flughafen-Bahnhof (Newark Liberty International Airport Train Station). Er liegt am Northeast Corridor und wird von NJ-Transit- und Amtrak-Zügen bedient.", + "visible_link": "https://de.wikipedia.org/wiki/Newark_Liberty_International_Airport", + "rank": 1 + }, + { + "link": "https://flug.idealo.de/flugroute/Berlin-BER/Newark-EWR/", + "title": "Flug Berlin - Newark - Liberty International ab 142 ...", + "snippet": "Flug von Berlin (BER) nach Newark (EWR), billige Flüge und Billigflug-Angebote auf der Strecke Berlin (BER) Newark (EWR) ab 142 € (Preis vom 18.02.2019). Günstige Flug-Tickets online buchen.", + "visible_link": "flug.idealo.de › … › Flüge nach New York › Flüge nach Newark", + "rank": 2 + }, + { + "link": "https://www.newarkairport.com/", + "title": "Newark-Liberty International Airport", + "snippet": "The Official Website of Newark Liberty International Airport.", + "visible_link": "https://www.newarkairport.com", + "rank": 3 + }, + { + "link": "https://flug.idealo.de/flugroute/Newark-EWR/Berlin-BER/", + "title": "Flug Newark - Liberty International Berlin ab 168 ...", + "snippet": "Flug von Newark (EWR) nach Berlin (BER), billige Flüge und Billigflug-Angebote auf der Strecke Newark (EWR) Berlin (BER) ab 168 € (Preis vom 30.01.2019). Günstige Flug-Tickets online buchen.", + "visible_link": "flug.idealo.de › … › Flüge nach Deutschland › Flüge nach Berlin", + "rank": 4 + }, + { + "link": "https://www.united.com/web/de-DE/Default.aspx", + "title": "United Airlines – Flugtickets, Reiseangebote und Flüge auf ...", + "snippet": "Finden Sie Reiseangebote und Flüge auf united.com. Buchen Sie Flugtickets und MileagePlus-Prämientickets zu mehr als 350 internationalen und nationalen Reisezielen.", + "visible_link": "https://www.united.com/web/de-DE/Default.aspx", + "rank": 5 + }, + { + "link": "https://usareisetipps.com/flughafen-new-york/", + "title": "JFK oder Newark? Flughäfen in New York: Infos & Vergleich", + "snippet": "Newark Liberty International Airport. Genau genommen kein Airport New Yorks, sondern ein Flughafen von New Jersey, ist der Newark Liberty International Airport (EWR), der jedoch ebenfalls fast ausschließlich von den Besuchern der großen Stadt im Nachbarstaat genutzt wird.", + "visible_link": "https://usareisetipps.com/flughafen-new-york", + "rank": 6 + }, + { + "link": "https://www.berlin.de/adressen/pappe-und-papier/newark-graphicboard-products-berlin-gmbh-4f144676b4fc475f0bee0301.html", + "title": "Newark Graphicboard Products Berlin GmbH :: Pappe und ...", + "snippet": "Pappe und Papier: Newark Graphicboard Products Berlin GmbH, Paradiesstr., Berlin–Treptow – Information zu Kontakt, Öffnungszeiten, Anfahrt und mehr.", + "visible_link": "https://www.berlin.de/adressen/pappe-und-papier/newark-graphic...", + "rank": 7 + }, + { + "link": "https://www.fluege.de/Katalog/New-York-Newark-Berlin-Tegel/Flug-von-nach-8326", + "title": "Flug New York Newark-Berlin Tegel: Flüge von New York ...", + "snippet": "Buchen Sie Ihren Flug von New York Newark nach Berlin Tegel bei Fluege.de und vergleichen Sie die Flüge von New York Newark nach Berlin Tegel von über 550 Airlines weltweit.", + "visible_link": "www.fluege.de › … › Flüge Berlin › Flughafen Berlin-Tegel", + "rank": 8 + }, + { + "link": "https://www.rome2rio.com/de/s/Newark/Berlin", + "title": "Newark nach Berlin per Flugzeug - rome2rio.com", + "snippet": "Du hast 4 Möglichkeiten, von Newark nach Berlin zu kommen. Die Billigste ist per Flugzeug Newark nach Berlin Schoenefeld und kostet $384. Die Schnellste ist per Flugzeug Newark nach Berlin Tegel und dauert 10¼ Stunden.", + "visible_link": "https://www.rome2rio.com/de/s/Newark/Berlin", + "rank": 9 + }, + { + "link": "https://www.united.com/web/de-DE/apps/travel/timetable/default.aspx", + "title": "United-Flugpläne | United Airlines", + "snippet": "Sehen Sie sich Flugpläne an und durchsuchen Sie diese nach planmäßigen United-Flügen zu allen Reisezielen.", + "visible_link": "https://www.united.com/web/de-DE/apps/travel/timetable/default.aspx", + "rank": 10 + } + ] + } + }, + "Fort Wayne": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:13 GMT", + "no_results": false, + "effective_query": "", + "num_results": "14.100.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Fort_Wayne", + "title": "Fort Wayne – Wikipedia", + "snippet": "Fort Wayne ist mit 264.488 Einwohnern (2016) die zweitgrößte Stadt im US-Bundesstaat Indiana und Sitz der Countyverwaltung (County Seat) des Allen Countys.", + "visible_link": "https://de.wikipedia.org/wiki/Fort_Wayne", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g37114-Activities-Fort_Wayne_Indiana.html", + "title": "Beste Attraktionen in Fort Wayne, IN - tripadvisor.de", + "snippet": "11.02.2019 Top 10 Fort Wayne Sehenswürdigkeiten: Hier finden Sie 4.769 Bewertungen und Fotos von Reisenden über 68 Sehenswürdigkeiten, Touren und Ausflüge - alle Fort Wayne …", + "visible_link": "www.tripadvisor.de › USA › Indiana (IN) › Fort Wayne", + "rank": 2 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/fort_wayne/US0IN0212.html", + "title": "Wetter Fort Wayne | wetter.com", + "snippet": "In Fort Wayne regnet es von Tagesbeginn bis zum Nachmittag bei Werten von 1 bis zu 7°C. Abends ist in Fort der Himmel bedeckt und die Werte gehen auf -5 bis -3°C zurück.", + "visible_link": "www.wetter.com › Nordamerika › USA › Indiana", + "rank": 3 + }, + { + "link": "https://en.wikipedia.org/wiki/Fort_Wayne,_Indiana", + "title": "Fort Wayne, Indiana - Wikipedia", + "snippet": "Clockwise from top: Downtown Fort Wayne skyline, Chief Jean-Baptiste de Richardville House, John Chapman's grave in Johnny Appleseed Park, Dr. Martin Luther King Jr. Memorial Bridge, Embassy Theatre, and Historic Fort Wayne.", + "visible_link": "https://en.wikipedia.org/wiki/Fort_Wayne,_Indiana", + "rank": 4 + }, + { + "link": "https://www.wetter.com/wetter_aktuell/wettervorhersage/16_tagesvorhersage/vereinigte_staaten_von_amerika/fort_wayne/US0IN0212.html", + "title": "Wetter Fort Wayne: 16 Tage Trend | wetter.com", + "snippet": "Der 16 Tage Wetter Trend für Fort Wayne. Temperatur, Wetterzustand, Sonnenstunden und Regenwahrscheinlichkeit in der 16 Tagesübersicht.", + "visible_link": "www.wetter.com › Nordamerika › USA › Indiana › Fort Wayne", + "rank": 5 + }, + { + "link": "https://www.hrs.de/hotel/usa/indiana/fort-wayne/", + "title": "Hotel Fort Wayne, Indiana - HRS Hotels in Fort Wayne ...", + "snippet": "HRS Preisgarantie mit Geld-zurück-Versprechen: Günstige Hotels in Fort Wayne, Indiana Geprüfte Hotelbewertungen Kostenlose Stornierung Mit Businesstarif 30% Rabatt", + "visible_link": "https://www.hrs.de/hotel/usa/indiana/fort-wayne", + "rank": 6 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g37114-Fort_Wayne_Indiana-Vacations.html", + "title": "Fort Wayne 2019: Best of Fort Wayne, IN Tourism …", + "snippet": "Fort Wayne serves up the perfect mix of urban convenience and natural beauty, boasting a world class cultural scene in a landscape enhanced by plenty of green space.", + "visible_link": "www.tripadvisor.com › United States › Indiana (IN)", + "rank": 7 + } + ] + } + }, + "Madison": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:16 GMT", + "no_results": false, + "effective_query": "", + "num_results": "16.900.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Madison_(Wisconsin)", + "title": "Madison (Wisconsin) – Wikipedia", + "snippet": "Madison ist die Hauptstadt des US-Bundesstaates Wisconsin und Verwaltungssitz des Dane County im Süden Wisconsins. Madison ist mit 252.551 Einwohnern nach …", + "visible_link": "https://de.wikipedia.org/wiki/Madison_(Wisconsin)", + "rank": 1 + }, + { + "link": "https://madisonhotel.de/", + "title": "Hotel Hamburg Mitte | THE MADISON 4 Sterne Hotel Hamburg", + "snippet": "WELCOME TO OUR MADISON. Wir wissen, dass auf Geschäftsreisen alles einwandfrei funktionieren soll. Deshalb haben wir unsere 166 Zimmer mit innovativen Technologien, kostenfreiem Wi-Fi, viel Stauraum, einer Kitchenette und moderner Ausstattung versehen.", + "visible_link": "https://madisonhotel.de", + "rank": 2 + }, + { + "link": "https://de.wikipedia.org/wiki/Madison", + "title": "Madison – Wikipedia", + "snippet": "Madison steht für: einen Vornamen, siehe Madison (Vorname) eine Disziplin im Bahnradsport, siehe Zweier-Mannschaftsfahren; einen Partytanz, siehe Madison (Tanz)", + "visible_link": "https://de.wikipedia.org/wiki/Madison", + "rank": 3 + }, + { + "link": "http://www.hosenshop-madison.de/", + "title": "Herzlich Willkommen | Hosen Shop MADISON", + "snippet": "© 2019 Hosenshop Madison - Alle Rechte vorbehalten. Datenschutz Impressum", + "visible_link": "www.hosenshop-madison.de", + "rank": 4 + }, + { + "link": "https://www.amazon.de/Madison-Uhren/s?page=1&rh=n%3A193707031%2Ck%3AMadison", + "title": "Suchergebnis auf Amazon.de für: Madison: Uhren", + "snippet": "Online-Shopping mit großer Auswahl im Uhren Shop.", + "visible_link": "https://www.amazon.de/Madison-Uhren/s?page=1&rh=n:193707031,k:Madison", + "rank": 5 + }, + { + "link": "http://www.madisonstore.de/", + "title": "Madisonstore", + "snippet": "Madisonstore", + "visible_link": "www.madisonstore.de", + "rank": 6 + }, + { + "link": "https://madison.com/", + "title": "Madison.com: Madison WI news sports …", + "snippet": "26.02.2019 · Madison.com: delivering Madison's news, events and information on Wisconsin sports, weather, entertainment and lifestyles.", + "visible_link": "https://madison.com", + "rank": 7 + }, + { + "link": "https://www.dict.cc/?s=Madison", + "title": "Madison | Übersetzung Englisch-Deutsch", + "snippet": "Kennst du Übersetzungen, die noch nicht in diesem Wörterbuch enthalten sind? Hier kannst du sie vorschlagen! Bitte immer nur genau eine Deutsch-Englisch-Übersetzung eintragen (Formatierung siehe Guidelines), möglichst mit einem guten Beleg im Kommentarfeld.", + "visible_link": "www.dict.cc › Deutsch › Nur in dieser Sprache suchen", + "rank": 8 + }, + { + "link": "http://www.madison-fitness.de/", + "title": "Willkommen im Madison Fitness & Health in Hildesheim!", + "snippet": "Das Madison Fitness & Health in Hildesheim - Ihre Location für Fitness, Gesundheit, Figur, Abnehmen und Wellness. Das Madison erfüllt die Wünsche in besonderer Weise auch für die 30+ Kunden.", + "visible_link": "www.madison-fitness.de", + "rank": 9 + }, + { + "link": "https://www.instagram.com/madisonbeer/", + "title": "MB (@madisonbeer) • Instagram photos and videos", + "snippet": "12.4m Followers, 880 Following, 1,417 Posts - See Instagram photos and videos from MB (@madisonbeer)", + "visible_link": "https://www.instagram.com/madisonbeer", + "rank": 10 + } + ] + } + }, + "Reno": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:19 GMT", + "no_results": false, + "effective_query": "", + "num_results": "9.100.000 Ergebnisse", + "results": [ + { + "link": "https://www.reno.de/", + "title": "Schuhe online kaufen im Schuhe Online Shop von RENOTRENDING CONTENT", + "snippet": "Schuhe zu günstigen Preisen ⭐ Top-Marken ⭐ 30 Tage Rückgaberecht & Versandkostenfrei bestellen Hier auf reno.de sparen!", + "visible_link": "https://www.reno.de", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Reno_(Nevada)", + "title": "Reno (Nevada) – Wikipedia", + "snippet": "Reno ist die viertgrößte Stadt im US-Bundesstaat Nevada. Die Region Reno umfasst das Washoe County mit insgesamt etwa 420.000 Einwohnern, davon 245.000 (laut Schätzung des U.S. Census Bureau 2016) in der Stadt selbst.", + "visible_link": "https://de.wikipedia.org/wiki/Reno_(Nevada)", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g45992-Reno_Nevada-Vacations.html", + "title": "Reno, NV: Tourismus in Reno - TripAdvisor", + "snippet": "Reno, Nevadas \"andere\" Stadt für Spieler und Erholungssuchende, liegt im westlichen Teil des Staates nahe der Grenze zu Kalifornien. Was der Stadt an Glamour und Reputation mangelt, wird durch die gebotenen Attraktionen und Annehmlichkeiten mehr als wettgemacht.", + "visible_link": "www.tripadvisor.de › USA › Nevada (NV)", + "rank": 3 + }, + { + "link": "https://www.meinprospekt.de/reno-de", + "title": "Reno - Aktuelle Angebote im Reno Prospekt entdecken!", + "snippet": "Reno : Prospekt Angebote - finde auf MeinProspekt alle aktuellen Reno Prospekte und Angebote in Deiner Stadt!", + "visible_link": "https://www.meinprospekt.de/reno-de", + "rank": 4 + }, + { + "link": "https://www.facebook.com/RENO", + "title": "RENO - Footwear Store | Facebook - 1,114 Photos", + "snippet": "Enjoy stylish romantic moments... 😍 we have shoes to fall in love for you and your better half check it out 👉 www.reno.de", + "visible_link": "https://www.facebook.com/RENO", + "rank": 5 + }, + { + "link": "https://www.kaufda.de/Geschaefte/Reno", + "title": "Reno Schuhe - Angebote im aktuellen Prospekt von Reno", + "snippet": "Reno. Millionen zufriedener Kunden vertrauen auf Damenschuhe, Herrenschuhe und Kinderschuhe des pfälzischen Einzelhändlers. Neben der Qualität der Produkte schätzen sie vor allem die kompetente Beratung durch freundliche Mitarbeiter.", + "visible_link": "https://www.kaufda.de/Geschaefte/Reno", + "rank": 6 + }, + { + "link": "http://www.usatourist.com/deutsch/destinations/nevada/reno/reno-main.html", + "title": "Reno in Nevada - usatourist.com", + "snippet": "USATourist.com - Reno, Nevada - USA Reise & Tourismus Führer, Tourist Attraktionen, Reiseziele - \"Die größte kleine Stadt der Welt,” Kasinos, spielend, Unterhaltung", + "visible_link": "www.usatourist.com/deutsch/destinations/nevada/reno/reno-main.html", + "rank": 7 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g45992-Activities-Reno_Nevada.html", + "title": "2019 DIE TOP 10 Sehenswürdigkeiten in Reno Februar (mit ...", + "snippet": "17.02.2019 Top 10 Reno Sehenswürdigkeiten: Hier finden Sie 14.348 Bewertungen und Fotos von Reisenden über 152 Sehenswürdigkeiten, Touren und Ausflüge - alle Reno Aktivitäten auf einen Blick.", + "visible_link": "www.tripadvisor.de › USA › Nevada (NV) › Reno", + "rank": 8 + } + ] + } + }, + "Fremont": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:22 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.400.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Fremont_(Kalifornien)", + "title": "Fremont (Kalifornien) – Wikipedia", + "snippet": "Fremont ist eine Stadt im Alameda County im US-Bundesstaat Kalifornien, Vereinigte Staaten. Die Stadt befindet sich im Südosten der Bucht von San Francisco zwischen San José und Oakland.", + "visible_link": "https://de.wikipedia.org/wiki/Fremont_(Kalifornien)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Fremont", + "title": "Fremont – Wikipedia", + "snippet": "Fremont ist der Name von John C. Frémont (1813–1890), US-amerikanischer Politiker und Entdecker; Fremont ist auch der Name mehrerer Orte in den Vereinigten Staaten:", + "visible_link": "https://de.wikipedia.org/wiki/Fremont", + "rank": 2 + }, + { + "link": "https://en.wikipedia.org/wiki/Fremont,_California", + "title": "Fremont, California - Wikipedia", + "snippet": "Fremont (/ ˈ f r iː m ɒ n t / FREE-mont) is a city in Alameda County, California, United States. It was incorporated on January 23, 1956, from the annexing of Centerville, Niles, Irvington, Mission San José, and Warm Springs.", + "visible_link": "https://en.wikipedia.org/wiki/Fremont,_California", + "rank": 3 + }, + { + "link": "http://www.freemont.de/", + "title": "Portal - Fiat Freemont Forum", + "snippet": "Forum für Fiat Freemont Fahrer und Fans mit Galerien, Tipps und Tricks, Treffen und vielem mehr.", + "visible_link": "www.freemont.de", + "rank": 4 + }, + { + "link": "https://de.wikivoyage.org/wiki/Fremont", + "title": "Fremont – Reiseführer auf Wikivoyage", + "snippet": "Fremont hat 210.158 Einwohner und liegt südöstlich von Oakland. Der Großteil der Bevölkerung arbeitet in der Elektronikindustrie und pendelt gewöhnlich in das Silicon Valley zur Arbeit.", + "visible_link": "https://de.wikivoyage.org/wiki/Fremont", + "rank": 5 + }, + { + "link": "https://www.capfremont.com/", + "title": "Fremont Capital", + "snippet": "Fremont Capital verfügt über langjährige Expertise in den Branchen, in die wir investieren. Wir sind ein unternehmerisch handelnder Investor und arbeiten eng mit dem Management unserer Portfoliofirmen zusammen, um deren volles Potential auszuschöpfen.", + "visible_link": "https://www.capfremont.com", + "rank": 6 + } + ] + } + }, + "San Antonio": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:46 GMT", + "no_results": false, + "effective_query": "", + "num_results": "129.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/San_Antonio", + "title": "San Antonio – Wikipedia", + "snippet": "San Antonio ist eine Stadt im US-Bundesstaat Texas und liegt am gleichnamigen Fluss. Sie ist County Seat des Bexar County. Mit etwa 1,5 Millionen Einwohnern (Stand 2016) ist San Antonio die siebtgrößte Stadt in den USA und nach Houston die zweitgrößte in Texas.", + "visible_link": "https://de.wikipedia.org/wiki/San_Antonio", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g60956-Activities-San_Antonio_Texas.html", + "title": "Beste Attraktionen in San Antonio, TX - tripadvisor.de", + "snippet": "17.02.2019 Top 10 San Antonio Sehenswürdigkeiten: Hier finden Sie 113.728 Bewertungen und Fotos von Reisenden über 232 Sehenswürdigkeiten, Touren und Ausflüge - alle San Antonio …", + "visible_link": "www.tripadvisor.de › USA › Texas (TX) › San Antonio", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g60956-San_Antonio_Texas-Vacations.html", + "title": "San Antonio, TX: Tourismus in San Antonio - TripAdvisor", + "snippet": "San Antonio erscheint wie eine sinnliche Kombination aus dem Amerika der Indianer-Stämme, dem alten Mexiko und dem wilden Westen, gepaart mit etwas zeitgemäßem Flair.", + "visible_link": "www.tripadvisor.de › USA › Texas (TX)", + "rank": 3 + }, + { + "link": "https://en.wikipedia.org/wiki/San_Antonio,_Texas", + "title": "San Antonio - Wikipedia", + "snippet": "", + "visible_link": "https://en.wikipedia.org/wiki/San_Antonio,_Texas", + "rank": 4 + }, + { + "link": "https://www.sanantonio.gov/", + "title": "The City of San Antonio - Official City Website > …", + "snippet": "Ron Nirenberg MAYOR. Ron Nirenberg is the mayor of San Antonio, the fastest growing city with the 7th largest population in the United States...", + "visible_link": "https://www.sanantonio.gov", + "rank": 5 + }, + { + "link": "https://www.visitsanantonio.com/", + "title": "Things to Do in San Antonio | Visit San Antonio", + "snippet": "Welcome to Visit San Antonio, explore and experience the city’s historical significance through tours.", + "visible_link": "https://www.visitsanantonio.com", + "rank": 6 + }, + { + "link": "https://aida.de/hafen/san-antonio", + "title": "Kreuzfahrt San Antonio - AIDA Hafen San Antonio", + "snippet": "Der Hafen von San Antonio. Die kleine Bucht von San Antonio wird vom großen Hafen beherrscht. Der Hafen unterhält vier große Terminals. Im südlichen Becken, dem Puertocito, liegen die Containerterminals und das internationale Terminal, weiter nördlich die Trawler und die kleineren Schiffe.", + "visible_link": "https://aida.de/hafen/san-antonio", + "rank": 7 + }, + { + "link": "https://www.ibiza-spotlight.de/san_antonio_a.htm", + "title": "San Antonio, Ibiza | Ibiza Spotlight", + "snippet": "San Antonio, Ibiza San Antonio ist ein lebendiger Ferienort an einer schönen, weiten Bucht, mit legendären Sunsetbars, weltbekannten Clubs, tollen Aktivitäten auf dem Wasser und an Land und einer ansteckend lebensfrohen Atmosphäre.", + "visible_link": "https://www.ibiza-spotlight.de/san_antonio_a.htm", + "rank": 8 + }, + { + "link": "https://www.wetteronline.de/wetter/san-antonio", + "title": "Wetter San Antonio - aktuelle Wettervorhersage von ...", + "snippet": "Wetter San Antonio. Das Wetter für San Antonio im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region San Antonio finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › Südstaaten › Texas", + "rank": 9 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g60956-San_Antonio_Texas-Vacations.html", + "title": "San Antonio Tourism: Best of San Antonio, TX – …", + "snippet": "San Antonio Tourism: TripAdvisor has 445,986 reviews of San Antonio Hotels, Attractions, and Restaurants making it your best San Antonio resource.", + "visible_link": "www.tripadvisor.com › United States › Texas (TX)", + "rank": 10 + } + ] + } + }, + "San Francisco": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:49 GMT", + "no_results": false, + "effective_query": "", + "num_results": "134.000.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/San_Francisco", + "title": "San Francisco – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/San_Francisco", + "rank": 1 + }, + { + "link": "https://www.youtube.com/watch?v=bch1_Ep5M1s", + "title": "San Francisco - Scott McKenzie - YouTube", + "snippet": "16.06.2009 · \"San Francisco (Be Sure to Wear Flowers in Your Hair)\" is a song, written by John Phillips of The Mamas & the Papas, and sung by Scott McKenzie.", + "visible_link": "https://www.youtube.com/watch?v=bch1_Ep5M1s", + "rank": 2 + }, + { + "link": "https://flug.idealo.de/flugroute/Berlin-BER/San-Francisco-SFO/", + "title": "Flug Berlin San Francisco ab 190 € | billige Flüge buchen ...", + "snippet": "Flug von Berlin (BER) nach San Francisco (SFO), billige Flüge und Billigflug-Angebote auf der Strecke Berlin (BER) San Francisco (SFO) ab 190 € (Preis vom …", + "visible_link": "flug.idealo.de › … › Flüge nach USA › Flüge nach San Francisco", + "rank": 3 + }, + { + "link": "https://www.swoodoo.com/de/flug/Berlin-Tegel-TXL/San-Francisco-SFO", + "title": "Flug Berlin Tegel - San Francisco ab 364 € | Billigflüge ...", + "snippet": "Billigflieger von Berlin Tegel (TXL) nach San Francisco (SFO) ab 364 €. Testsieger im Flug-Preisvergleich bei ComputerBild, empfohlen von Stiftung Warentest. Jetzt Flüge nach San Francisco schnell und einfach auf SWOODOO buchen!", + "visible_link": "www.swoodoo.com › Weltweit › Nordamerika › USA", + "rank": 4 + }, + { + "link": "https://www.lufthansa.com/flug/flug-berlin-san_francisco", + "title": "Flug Berlin San Francisco (BER - SFO) ab 498 € buchen ...", + "snippet": "Buchen Sie einen günstigen Flug Berlin San Francisco (BER - SFO). Genießen Sie die bewährte Lufthansa-Qualität und reisen Sie zur Golden Gate Bridge.", + "visible_link": "https://www.lufthansa.com/flug/flug-berlin-san_francisco", + "rank": 5 + }, + { + "link": "https://www.airfrance.de/fluge/berlin+san-francisco", + "title": "Flug Berlin San Francisco ab 336 € - Flüge nach San ...", + "snippet": "Flug Berlin - San Francisco ... Kinder auf Reisen: - Kinder unter 4 Jahren müssen von einem mindestens 18-jährigen Erwachsenen begleitet werden (Von diesem Mindestalter ausgenommen sind die mitreisende Mutter, der mitreisende Vater oder der mitreisende Vormund des Kindes.", + "visible_link": "https://www.airfrance.de/fluge/berlin+san-francisco", + "rank": 6 + } + ] + } + }, + "Seattle": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:52 GMT", + "no_results": false, + "effective_query": "", + "num_results": "17.700.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Seattle", + "title": "Seattle – Wikipedia", + "snippet": "Seattle (englisch: [sɪˈætəl]; deutsch: [siˈɛtl̩]) ist die größte Stadt im Nordwesten der Vereinigten Staaten. Sie ist der Verwaltungssitz des King County im US-Bundesstaat Washington und liegt zwischen dem Puget Sound und dem Lake Washington, etwa 155 km südlich der Grenze zu Kanada.", + "visible_link": "https://de.wikipedia.org/wiki/Seattle", + "rank": 1 + }, + { + "link": "https://www.wetteronline.de/wetter/seattle", + "title": "Wetter Seattle - aktuelle Wettervorhersage von WetterOnline", + "snippet": "Wetter Seattle. Das Wetter für Seattle im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Seattle finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › US-Westküste › Washington", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g60878-Seattle_Washington-Vacations.html", + "title": "Seattle, WA: Tourismus in Seattle - TripAdvisor", + "snippet": "In Seattle ist ein Besuch der Seattle Public Library ein Muss – ein modernes architektonisches Juwel aus Glasprismen, unkonventionellen Formen und einer \"Buchspirale\", die sich über vier Etagen erstreckt.", + "visible_link": "www.tripadvisor.de › USA › Washington (WA)", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Hotels-g60878-Seattle_Washington-Hotels.html", + "title": "DIE 10 BESTEN Hotels in Seattle 2019 ab 62€ (günstige ...", + "snippet": "Beste Hotels in Seattle bei TripAdvisor: Finden Sie 126.583 Bewertungen von Reisenden, authentische Reisefotos und Top-Angebote für 191 Hotels in Seattle, WA.", + "visible_link": "www.tripadvisor.de › USA › Washington (WA) › Seattle", + "rank": 4 + }, + { + "link": "https://de.wikivoyage.org/wiki/Seattle", + "title": "Seattle – Reiseführer auf Wikivoyage", + "snippet": "Seattle ist eine Stadt im US-Bundesstaat Washington. Die 620.000-Einwohner-Stadt ist Teil der Seattle Metropolitan Area, zu der auch die Städte Tacoma, Bellevue und Everett zählen und die mit 4 Mio Einwohnern die fünfzehntgrößte Stadtregion der USA ist.", + "visible_link": "https://de.wikivoyage.org/wiki/Seattle", + "rank": 5 + }, + { + "link": "https://www.visitseattle.org/", + "title": "Visit Seattle Washington | Travel & Tourism | …", + "snippet": "Welcome to the official source for information on visiting Seattle, Washington. Lodging, entertainment, food/drink, sports, attractions & more.", + "visible_link": "https://www.visitseattle.org", + "rank": 6 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g60878-Seattle_Washington-Vacations.html", + "title": "Seattle 2019: Best of Seattle, WA Tourism - …", + "snippet": "In Seattle you simply can’t skip the Central Public Library – a modern architectural marvel of glass grids, unusual shapes, and a “book spiral” that climbs four stories.", + "visible_link": "www.tripadvisor.com › United States › Washington (WA)", + "rank": 7 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g60878-Activities-Seattle_Washington.html", + "title": "THE 15 BEST Things to Do in Seattle - 2019 (with …", + "snippet": "Book your tickets online for the top things to do in Seattle, Washington on TripAdvisor: See 187,039 traveler reviews and photos of Seattle tourist attractions. Find what to do today, this weekend, or in March. We have reviews of the best places to see in Seattle. Visit top-rated & must-see attractions.", + "visible_link": "www.tripadvisor.com › United States › Washington (WA) › Seattle", + "rank": 8 + } + ] + } + }, + "Louisville/Jefferson County": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:54 GMT", + "no_results": false, + "effective_query": "", + "num_results": "17.900.000 Ergebnisse", + "results": [ + { + "link": "https://louisvilleky.gov/", + "title": "LouisvilleKy.gov", + "snippet": "News, Events and Online Services for the Louisville Metro area.", + "visible_link": "https://louisvilleky.gov", + "rank": 1 + }, + { + "link": "https://en.wikipedia.org/wiki/Louisville-Jefferson_County", + "title": "Louisville, Kentucky - Wikipedia", + "snippet": "", + "visible_link": "https://en.wikipedia.org/wiki/Louisville-Jefferson_County", + "rank": 2 + }, + { + "link": "https://de.wikipedia.org/wiki/Jefferson_County_(Kentucky)", + "title": "Jefferson County (Kentucky) – Wikipedia", + "snippet": "Jefferson County ist ein County im Bundesstaat Kentucky der Vereinigten Staaten. Der Verwaltungssitz (County Seat) ist Louisville, das nach König Ludwig XVI. von Frankreich benannt wurde.", + "visible_link": "https://de.wikipedia.org/wiki/Jefferson_County_(Kentucky)", + "rank": 3 + }, + { + "link": "https://www.facebook.com/JeffersonRiverportInternational/", + "title": "Louisville & Jefferson County Riverport Authority …", + "snippet": "Coca-Cola Bottling Co. Consolidated makes, sells and distributes Coca-Cola products along with other unique beverages, carrying more than 300 brands and flavors across 14 states to over 65 million people.", + "visible_link": "https://www.facebook.com/JeffersonRiverportInternational", + "rank": 4 + }, + { + "link": "https://en.wikipedia.org/wiki/Jefferson_County,_Kentucky", + "title": "Jefferson County, Kentucky - Wikipedia", + "snippet": "Jefferson County is a county located in the U.S. Commonwealth of Kentucky. As of the 2010 census, the population was 741,096. It is the most populous county in the commonwealth (with more than twice the population of second ranked Fayette County).", + "visible_link": "https://en.wikipedia.org/wiki/Jefferson_County,_Kentucky", + "rank": 5 + }, + { + "link": "https://www.facebook.com/LouisvilleLandTrust/", + "title": "Louisville/Jefferson County Environmental Trust - …", + "snippet": "Louisville/Jefferson County Environmental Trust. 73 likes. The Louisville and Jefferson County Environmental Trust protects land for future generations...", + "visible_link": "https://www.facebook.com/LouisvilleLandTrust", + "rank": 6 + }, + { + "link": "https://www.countyoffice.org/louisville-jefferson-county-victims-assistance-louisville-ky-5ff/", + "title": "Louisville Jefferson County Victims Assistance in ...", + "snippet": "Louisville Jefferson County Victims Assistance, a Victim Assistance Center, in Louisville, KY 40202, address and phone number. Victim assistance centers provide information about crime and criminal victimization, domestic violence, NOVA, victims compensation funds and impact statements.", + "visible_link": "www.countyoffice.org › … › Kentucky › Jefferson County › Louisville", + "rank": 7 + } + ] + } + }, + "Sacramento": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:57 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.600.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Sacramento", + "title": "Sacramento – Wikipedia", + "snippet": "", + "visible_link": "https://de.wikipedia.org/wiki/Sacramento", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g32999-Activities-Sacramento_California.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Sacramento 2019 (mit ...", + "snippet": "", + "visible_link": "www.tripadvisor.de › USA › Kalifornien › Sacramento", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g32999-Sacramento_California-Vacations.html", + "title": "Sacramento, Kalifornien: Tourismus in Sacramento - TripAdvisor", + "snippet": "Auf TripAdvisor finden Sie alles für Sacramento, Kalifornien: 88.457 unabhängige Bewertungen von Hotels, Restaurants und Sehenswürdigkeiten sowie authentische Reisefotos.", + "visible_link": "www.tripadvisor.de › USA › Kalifornien", + "rank": 3 + }, + { + "link": "https://www.cityofsacramento.org/", + "title": "City Home - City of Sacramento", + "snippet": "Register for Sacramento’s emergency alert system. The notification system alerts residents and businesses, via email, text or call, about emergency events and other important public safety information.", + "visible_link": "https://www.cityofsacramento.org", + "rank": 4 + }, + { + "link": "https://en.wikipedia.org/wiki/Sacrament", + "title": "Sacrament - Wikipedia", + "snippet": "A sacrament is a Christian rite recognized as of particular importance and significance. There are various views on the existence and meaning of such rites.", + "visible_link": "https://en.wikipedia.org/wiki/Sacrament", + "rank": 5 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g32999-Sacramento_California-Vacations.html", + "title": "Sacramento 2019: Best of Sacramento, CA …", + "snippet": "California's capital city is often overlooked by tourists seeking out better known destinations in other corners of the state. Look again: Sacramento offers a range of exciting, educational and historic attractions sure to entertain all.", + "visible_link": "www.tripadvisor.com › United States › California (CA)", + "rank": 6 + }, + { + "link": "https://en.wikipedia.org/wiki/Sacramento,_California", + "title": "Sacramento, California - Wikipedia", + "snippet": "In 1808, the Spanish explorer Gabriel Moraga discovered and named the Sacramento Valley and the Sacramento River. A Spanish writer with the Moraga expedition wrote: \"Canopies of oaks and cottonwoods, many festooned with grapevines, overhung both sides of the blue current.", + "visible_link": "https://en.wikipedia.org/wiki/Sacramento,_California", + "rank": 7 + }, + { + "link": "https://www.nba.com/kings/", + "title": "Sacramento Kings | The Official Site of the …", + "snippet": "The official site of the Sacramento Kings. Includes news, scores, schedules, statistics, photos and video.", + "visible_link": "https://www.nba.com/kings", + "rank": 8 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g32999-Activities-Sacramento_California.html", + "title": "THE 15 BEST Things to Do in Sacramento - …", + "snippet": "Book your tickets online for the top things to do in Sacramento, California on TripAdvisor: See 15,564 traveler reviews and photos of Sacramento tourist attractions. Find what to do today, this weekend, or in March. We have reviews of the best places to see in Sacramento. Visit top-rated & must-see attractions.", + "visible_link": "www.tripadvisor.com › … › California (CA) › Sacramento", + "rank": 9 + } + ] + } + }, + "Omaha": { + "1": { + "time": "Thu, 28 Feb 2019 14:28:59 GMT", + "no_results": false, + "effective_query": "", + "num_results": "14.900.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Omaha", + "title": "Omaha – Wikipedia", + "snippet": "Geschichte. Omaha City wurde am 4. Juli 1854 gegründet und nach dem Indianerstamm der Omaha benannt, die einen großen Teil ihres Landes an den Staat verkauft hatten.", + "visible_link": "https://de.wikipedia.org/wiki/Omaha", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Omaha_Hold%E2%80%99em", + "title": "Omaha Hold’em – Wikipedia", + "snippet": "Omaha Hold’em, meist kurz Omaha genannt, ist eine Variante des Kartenspiels Poker. Omaha Hold’em hat sich aus der Variante Texas Hold’em entwickelt, und folgt dem gleichen Spielablauf.", + "visible_link": "https://de.wikipedia.org/wiki/Omaha_Hold’em", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g60885-Omaha_Nebraska-Vacations.html", + "title": "Omaha, NE: Tourismus in Omaha - TripAdvisor", + "snippet": "Allein die Tatsache, dass Omaha über die größte Anzahl öffentlicher Golfplätze der Vereinigten Staaten verfügt, wäre schon Grund genug für einen Besuch.", + "visible_link": "www.tripadvisor.de › USA › Nebraska (NE)", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g60885-Activities-Omaha_Nebraska.html", + "title": "Beste Attraktionen in Omaha, NE - tripadvisor.de", + "snippet": "", + "visible_link": "www.tripadvisor.de › USA › Nebraska (NE) › Omaha", + "rank": 4 + }, + { + "link": "https://www.pokerstars.com/de/poker/games/omaha/", + "title": "Omaha Poker - lernen Sie Omaha - PokerStars", + "snippet": "Omaha-Poker. Omaha Poker ist eine spannende Pokervariante, die von Texas Hold'em abgeleitet wurde. Jeder Spieler erhält zunächst vier Startkarten (auch \"Hole Cards\" genannt) verdeckt zugeteilt, die nur ihm gehören und die nur er einsehen kann.", + "visible_link": "https://www.pokerstars.com/de/poker/games/omaha", + "rank": 5 + }, + { + "link": "https://de.wikivoyage.org/wiki/Omaha", + "title": "Omaha – Reiseführer auf Wikivoyage", + "snippet": "Der Flughafen von Omaha heißt 41.302-95.893666666667 1 Eppley Airfield (IATA Code: OMA). Mit 4,6 Millionen Passagieren im Jahr hat er den Status eines medium hub, also eines Drehkreuzes mit regionaler Bedeutung.", + "visible_link": "https://de.wikivoyage.org/wiki/Omaha", + "rank": 6 + }, + { + "link": "https://en.wikipedia.org/wiki/Omaha,_Nebraska", + "title": "Omaha, Nebraska - Wikipedia", + "snippet": "Omaha (/ ˈ oʊ m ə h ɑː / OH-mə-hah) is the largest city in the state of Nebraska and the county seat of Douglas County. Omaha is located in the Midwestern United States on the Missouri River, about 10 miles (15 km) north of the mouth of the Platte River.", + "visible_link": "https://en.wikipedia.org/wiki/Omaha,_Nebraska", + "rank": 7 + }, + { + "link": "https://www.wetter.com/wetter_aktuell/wettervorhersage/16_tagesvorhersage/vereinigte_staaten_von_amerika/omaha/US0NE0363.html", + "title": "Wetter Omaha: 16 Tage Trend | wetter.com", + "snippet": "Der 16 Tage Wetter Trend für Omaha. Temperatur, Wetterzustand, Sonnenstunden und Regenwahrscheinlichkeit in der 16 Tagesübersicht.", + "visible_link": "www.wetter.com › Nordamerika › USA › Nebraska › Omaha", + "rank": 8 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g60885-Omaha_Nebraska-Vacations.html", + "title": "Omaha 2019: Best of Omaha, NE Tourism - …", + "snippet": "Omaha is home to the world’s largest indoor desert under the world’s largest geodesic dome above the world’s largest nocturnal exhibit next to one of the world’s largest indoor rainforests!", + "visible_link": "www.tripadvisor.com › United States › Nebraska (NE)", + "rank": 9 + }, + { + "link": "https://www.omaha.com/", + "title": "Omaha.com | Breaking news, sports, …", + "snippet": "Breaking news, weather, analysis and information from the Omaha World-Herald about Omaha events, local weather, sports, schools, crime, government, health and entertainment in the Omaha ...", + "visible_link": "https://www.omaha.com", + "rank": 10 + } + ] + } + }, + "Wichita": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:02 GMT", + "no_results": false, + "effective_query": "", + "num_results": "14.100.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Wichita_(Kansas)", + "title": "Wichita (Kansas) – Wikipedia", + "snippet": "Wichita ist mit ca. 390.000 Einwohnern (Schätzung 2016 des U.S. Census Bureau) die größte Stadt im US-Bundesstaat Kansas. Benannt ist Wichita nach dem hier ursprünglich ansässigen Indianervolk, den Wichita.", + "visible_link": "https://de.wikipedia.org/wiki/Wichita_(Kansas)", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Wichita_(Film)", + "title": "Wichita (Film) – Wikipedia", + "snippet": "Wichita ist ein Film des französischen Regisseurs Jacques Tourneur aus dem Jahr 1955. Der Western basiert auf einer Kurzgeschichte des US-Amerikaners Daniel B. Ullman, der auch das Drehbuch schrieb und wurde von der Allied Artists Pictures Corporation produziert.", + "visible_link": "https://de.wikipedia.org/wiki/Wichita_(Film)", + "rank": 2 + }, + { + "link": "https://en.wikipedia.org/wiki/Wichita,_Kansas", + "title": "Wichita, Kansas - Wikipedia", + "snippet": "Wichita (/ ˈ w ɪ tʃ ɪ t ɔː / WITCH-i-taw) is the largest city in the U.S. state of Kansas and the county seat of Sedgwick County. As of 2017, the estimated population of the city was 390,591. Wichita is the principal city of the Wichita metropolitan area which had an estimated population of 644,610 in 2015.", + "visible_link": "https://en.wikipedia.org/wiki/Wichita,_Kansas", + "rank": 3 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/wichita/US0KS0625.html", + "title": "Wetter Wichita | wetter.com", + "snippet": "In Wichita ziehen morgens Wolkenfelder durch bei Werten von -5°C. Gegen später bleibt die Wolkendecke geschlossen und die Temperaturen erreichen 1°C.", + "visible_link": "www.wetter.com › Nordamerika › USA › Kansas", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g39143-Wichita_Kansas-Vacations.html", + "title": "Wichita 2019: Best of Wichita, KS Tourism - …", + "snippet": "Wichita Tourism: TripAdvisor has 52,230 reviews of Wichita Hotels, Attractions, and Restaurants making it your best Wichita resource.", + "visible_link": "www.tripadvisor.com › United States › Kansas (KS)", + "rank": 5 + }, + { + "link": "https://www.wetteronline.de/wetter/wichita", + "title": "Wetter Wichita - aktuelle Wettervorhersage von WetterOnline", + "snippet": "Wetter Wichita. Das Wetter für Wichita im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Wichita finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › Mittlerer Westen › Kansas", + "rank": 6 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g39143-Activities-Wichita_Kansas.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Wichita 2019 (mit fotos ...", + "snippet": "23.02.2019 Top 10 Wichita Sehenswürdigkeiten: Hier finden Sie 7.852 Bewertungen und Fotos von Reisenden über 83 Sehenswürdigkeiten, Touren und Ausflüge - alle Wichita Aktivitäten auf einen Blick.", + "visible_link": "www.tripadvisor.de › USA › Kansas (KS) › Wichita", + "rank": 7 + }, + { + "link": "https://www.wetteronline.de/wetter/wichita-falls", + "title": "Wetter Wichita Falls - aktuelle Wettervorhersage von ...", + "snippet": "Wetter Wichita Falls. Das Wetter für Wichita Falls im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Wichita Falls finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › Südstaaten › Texas", + "rank": 8 + }, + { + "link": "https://www.imdb.com/title/tt0048806/", + "title": "Wichita (1955) - IMDb", + "snippet": "03.01.1956 · In 1874, after noticing the total lawlessness in Wichita, Wyatt Earp reluctantly accepts the Marshal's job and runs into the worst local troublemakers.", + "visible_link": "https://www.imdb.com/title/tt0048806", + "rank": 9 + }, + { + "link": "https://www.visitwichita.com/", + "title": "Visit Wichita | Events, Things To Do, Hotels, …", + "snippet": "Find vacation planning information about Wichita including hotels, restaurants, things to do, and events. Enjoy festivals & attractions year round.", + "visible_link": "https://www.visitwichita.com", + "rank": 10 + } + ] + } + }, + "Anaheim": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:05 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.700.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Anaheim", + "title": "Anaheim – Wikipedia", + "snippet": "Anaheim ist eine Stadt im kalifornischen Orange County, etwa 40 Kilometer südöstlich von Los Angeles gelegen, und hat etwa 352.497 Einwohner (Schätzung 2017, U.S. Census Bureau).", + "visible_link": "https://de.wikipedia.org/wiki/Anaheim", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g29092-Activities-Anaheim_California.html", + "title": "Beste Attraktionen in Anaheim, Kalifornien - tripadvisor.de", + "snippet": "14.02.2019 Top 10 Anaheim Sehenswürdigkeiten: Hier finden Sie 58.432 Bewertungen und Fotos von Reisenden über 46 Sehenswürdigkeiten, Touren und Ausflüge - alle Anaheim Aktivitäten auf einen Blick.", + "visible_link": "www.tripadvisor.de › USA › Kalifornien › Orange County › Anaheim", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g29092-Anaheim_California-Vacations.html", + "title": "Anaheim 2019: Best of Anaheim, CA Tourism - …", + "snippet": "Known as the home of “the happiest place on Earth,” there’s more to Anaheim than thrilling theme parks. Bring your appetite to the Anaheim Packing District and Center Street Promenade for some eclectic eateries and award-winning craft breweries.", + "visible_link": "www.tripadvisor.com › … › California (CA) › Orange County", + "rank": 3 + }, + { + "link": "https://de.wikipedia.org/wiki/Anaheim_Ducks", + "title": "Anaheim Ducks – Wikipedia", + "snippet": "Die Anaheim Ducks (IPA: [ˈænəhaɪm dʌks]) sind ein US-amerikanisches Eishockey franchise der National Hockey League aus Anaheim im Bundesstaat Kalifornien.", + "visible_link": "https://de.wikipedia.org/wiki/Anaheim_Ducks", + "rank": 4 + }, + { + "link": "https://www.vans.de/shop/de/vans-de/anaheim--de-19", + "title": "Anaheim | Vans | Offizieller Store", + "snippet": "Kaufen Sie noch heute Anaheim Anaheim auf Vans.de.Kostenfreie Lieferung Bei Bestellungen Ab EUR50.", + "visible_link": "https://www.vans.de/shop/de/vans-de/anaheim--de-19", + "rank": 5 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/anaheim/US0CA0028.html", + "title": "Wetter Anaheim | wetter.com", + "snippet": "In Anaheim ist es am Morgen leicht bewölkt und die Temperatur liegt bei 11°C. Darüber hinaus ist es am Nachmittag und am Abend sonnig bei Temperaturen von 14 bis 19°C.", + "visible_link": "www.wetter.com › Nordamerika › USA", + "rank": 6 + }, + { + "link": "https://24timezones.com/de_weltzeit/anaheim_aktuelle_zeit.php", + "title": "Zeit Anaheim, USA - Zeitverschiebung - Lokalzeit Anaheim ...", + "snippet": "Zeit in Anaheim, USA - Zeitverschiebung, Zeitumstellung 2019, Lokalzeit, Sommerzeit, Zeitunterschied.", + "visible_link": "https://24timezones.com/de_weltzeit/anaheim_aktuelle_zeit.php", + "rank": 7 + }, + { + "link": "https://www.booking.com/city/us/anaheim.de.html", + "title": "Die 30 besten Hotels in Anaheim, USA (Ab € 53)", + "snippet": "Das Hyatt House at Anaheim Resort/Convention Center in Anaheim, Kalifornien, liegt 600 m vom Freizeitpark Disney California Adventure entfernt und bietet Ihnen einen Außenpool und Poolblick.", + "visible_link": "https://www.booking.com/city/us/anaheim.de.html", + "rank": 8 + }, + { + "link": "https://en.wikipedia.org/wiki/Anaheim,_California", + "title": "Anaheim, California - Wikipedia", + "snippet": "Founding. Anaheim's name is a blend of Ana, after the nearby Santa Ana River, and German -heim meaning \"home\", which is also a common Germanic place name compound (compare Trondheim in Norway and many place names in Germany).", + "visible_link": "https://en.wikipedia.org/wiki/Anaheim,_California", + "rank": 9 + }, + { + "link": "https://www.nhl.com/ducks", + "title": "Official Anaheim Ducks Website | NHL.com", + "snippet": "The most up-to-date breaking news for the Anaheim Ducks including highlights, roster, schedule, scores and archives.", + "visible_link": "https://www.nhl.com/ducks", + "rank": 10 + } + ] + } + }, + "Anchorage": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:07 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.200.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Anchorage", + "title": "Anchorage – Wikipedia", + "snippet": "Anchorage ([ˈæŋkərɪdʒ], engl. „Ankerplatz“) ist eine Stadt an der Bucht des Cook Inlet im US-Bundesstaat Alaska. Mit 291.826 Einwohnern (laut der letzten Volkszählung 2010) ist Anchorage die mit Abstand größte Stadt Alaskas sowie dessen wichtigstes Industriezentrum.", + "visible_link": "https://de.wikipedia.org/wiki/Anchorage", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g60880-Anchorage_Alaska-Vacations.html", + "title": "Anchorage, AK: Tourismus in Anchorage - TripAdvisor", + "snippet": "Der Name Anchorage erweckt zunächst Bilder von ewigem Eis und Schnee, doch die größte Stadt Alaskas hat ein vergleichsweise mildes Küstenklima und ihr Stadtbild unterscheidet sich kaum von anderen amerikanischen Städten.", + "visible_link": "www.tripadvisor.de › USA › Alaska (AK)", + "rank": 2 + }, + { + "link": "https://www.anchorage.net/", + "title": "Anchorage, Alaska | Visit Anchorage", + "snippet": "Start planning a trip to Anchorage, the perfect place for a vacation focused on the outdoors, wildlife, glaciers and parklands. Get travel ideas from the official source for Anchorage, Alaska travel information.", + "visible_link": "https://www.anchorage.net", + "rank": 3 + }, + { + "link": "https://www.dict.cc/englisch-deutsch/anchorage.html", + "title": "dict.cc Wörterbuch :: anchorage :: Englisch-Deutsch ...", + "snippet": "Dieses Deutsch-Englisch-Wörterbuch basiert auf der Idee der freien Weitergabe von Wissen. Mehr Informationen! Enthält Übersetzungen von der TU Chemnitz sowie aus Mr Honey's Business Dictionary (Englisch/Deutsch).", + "visible_link": "www.dict.cc › … › Übersetzungen mit gleichem Wortanfang › ANC", + "rank": 4 + }, + { + "link": "https://www.tripadvisor.de/Hotels-g60880-Anchorage_Alaska-Hotels.html", + "title": "DIE 10 BESTEN Hotels in Anchorage 2019 ab 37€ (günstige ...", + "snippet": "Beste Hotels in Anchorage bei TripAdvisor: Finden Sie 35.670 Bewertungen von Reisenden, authentische Reisefotos und Top-Angebote für 237 Hotels in Anchorage, AK.", + "visible_link": "www.tripadvisor.de › USA › Alaska (AK) › Anchorage", + "rank": 5 + }, + { + "link": "https://dict.leo.org/englisch-deutsch/anchorage", + "title": "anchorage - Deutsch Wörterbuch - leo.org: Startseite", + "snippet": "Lernen Sie die Übersetzung für 'anchorage' in LEOs Englisch ⇔ Deutsch Wörterbuch. Mit Flexionstabellen der verschiedenen Fälle und Zeiten Aussprache und relevante Diskussionen Kostenloser Vokabeltrainer", + "visible_link": "https://dict.leo.org/englisch-deutsch/anchorage", + "rank": 6 + }, + { + "link": "https://www.condor.com/de/fluege/usa/anchorage/", + "title": "Flüge Anchorage - Hier billige Flüge mit Condor buchen", + "snippet": "Flug Anchorage - Buchen Sie hier mit Condor. Günstig - vielfältiges Angebot - Unendliche Weiten -menschenleere Natur.", + "visible_link": "www.condor.com › Start › Flüge › USA", + "rank": 7 + }, + { + "link": "https://www.wetter.com/vereinigte_staaten_von_amerika/anchorage/US5879400.html", + "title": "Wetter Anchorage | wetter.com", + "snippet": "In Anchorage ist es am Tag wolkenlos bei Werten von -10 bis zu -5°C. In der Nacht gibt es einen wolkenlosen Himmel und die Temperatur sinkt auf -12°C.", + "visible_link": "www.wetter.com › Nordamerika › USA › Alaska", + "rank": 8 + }, + { + "link": "https://www.t-online.de/themen/anchorage", + "title": "Anchorage: aktuelle News & Infos - t-online.de", + "snippet": "Alle aktuellen News zum Thema Anchorage sowie Bilder, Videos und Infos zu Anchorage bei t-online.de.", + "visible_link": "www.t-online.de › Themen", + "rank": 9 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g60880-Anchorage_Alaska-Vacations.html", + "title": "Anchorage 2019: Best of Anchorage, AK Tourism …", + "snippet": "Set amid the coastal Chugach Mountains, Anchorage defies popular visions of polar ice caps and frozen tundra. It’s also warmer than you think (averaging 65 degrees in summer), making conditions ideal for sight-seeing or taking on uniquely Alaskan opportunities like arctic …", + "visible_link": "www.tripadvisor.com › United States › Alaska (AK)", + "rank": 10 + } + ] + } + }, + "Plano": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:10 GMT", + "no_results": false, + "effective_query": "", + "num_results": "15.200.000 Ergebnisse", + "results": [ + { + "link": "https://www.berlin.de/", + "title": "Berlin - Offizielles Stadtportal der Hauptstadt ...", + "snippet": "Die offizielle Website der Stadt Berlin. Interessante Informationen für alle Berlinerinnen, Berliner und Touristen.", + "visible_link": "https://www.berlin.de", + "rank": 1 + }, + { + "link": "https://www.berlin.de/stadtplan/", + "title": "Stadtplan Berlin - Berlin.de", + "snippet": "Ihr Stadtplan für Berlin. Finden Sie Adressen, interessante Orte und die nächsten Abfahrtszeiten für Bus & Bahn.", + "visible_link": "https://www.berlin.de/stadtplan", + "rank": 2 + }, + { + "link": "https://www.meinestadt.de/berlin/stadtplan", + "title": "Stadtplan Berlin und Umgebung | Stadtkarte & Straßenkarte", + "snippet": "Mit dem interaktiven Stadtplan von Berlin die nächste Route Sehenswürdigkeit oder den nächsten Restaurant besuch planen.", + "visible_link": "www.meinestadt.de › Berlin", + "rank": 3 + }, + { + "link": "https://www.visitberlin.de/es/el-plano-de-la-ciudad-de-berlin", + "title": "El plano de la ciudad de Berlín | visitBerlin.de", + "snippet": "visitBerlin logo ” ¿Tiene alguna pregunta en relación con nuestras ofertas o necesita asesoramiento personal? En ese caso no dude en contactar con alguno de nuestros asesores de viaje por teléfono o por correo electrónico.", + "visible_link": "www.visitberlin.de › … › Planificación del viaje", + "rank": 4 + }, + { + "link": "https://fahrinfo.bvg.de/Fahrinfo/bin/query.bin/en?oldUrl=true&", + "title": "BVG journey planner - Journey planner", + "snippet": "Help In case your journey does not take you simply from stop to stop, you can find out how to reach your first stop or the route to take from your last stop.", + "visible_link": "fahrinfo.bvg.de › Home › Journey Planner › Trip Planner", + "rank": 5 + }, + { + "link": "https://www.metro.de/standorte/berlin-berolina", + "title": "METRO Berlin-Berolina » Ihr Großmarkt vor Ort • | METRO", + "snippet": "Durch die Nutzung von metro.de stimmen Sie unserer Verwendung von Cookies zu. Nähere Informationen über die von uns verwendeten Cookies und die …", + "visible_link": "https://www.metro.de/standorte/berlin-berolina", + "rank": 6 + }, + { + "link": "https://www.smb.museum/museen-und-einrichtungen/pergamonmuseum/home.html", + "title": "Pergamonmuseum: Home", + "snippet": "Das Pergamonmuseum beherbergt die Antikensammlung, das Vorderasiatische Museum und das Museum für Islamische Kunst.", + "visible_link": "https://www.smb.museum/museen-und-einrichtungen/pergamonmuseum/...", + "rank": 7 + }, + { + "link": "https://www.visitberlin.de/es", + "title": "Bienvenido a Berlín | visitBerlin.de", + "snippet": "Guía de bolsillo gratuita – incluye plano de la ciudad; Vendido más de 12 mio de copias. Ahorrar ahora. Esto es típico de Berlín: ¡nuestros consejos! ¡No se lo puede perder! Berlín tiene mucho que ofrecer además de sus principales atracciones turísticas. Berlín es también una ciudad donde ir de compras: además de las tiendas de lujo en el Kurfürstendamm, también encontrará ...", + "visible_link": "https://www.visitberlin.de/es", + "rank": 8 + } + ] + } + }, + "Orlando": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:13 GMT", + "no_results": false, + "effective_query": "", + "num_results": "17.800.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Orlando_(Florida)", + "title": "Orlando (Florida) – Wikipedia", + "snippet": "Orlando ist eine Stadt und County Seat des Orange County im US-Bundesstaat Florida mit 238.300 Einwohnern (Stand: 2010). Nach Jacksonville, Miami, Tampa und Saint Petersburg ist Orlando die fünftgrößte Stadt Floridas.", + "visible_link": "https://de.wikipedia.org/wiki/Orlando_(Florida)", + "rank": 1 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g34515-Activities-Orlando_Florida.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Orlando 2019 (mit fotos ...", + "snippet": "19.02.2019 Top 10 Orlando Sehenswürdigkeiten: Hier finden Sie 528.223 Bewertungen und Fotos von Reisenden über 226 Sehenswürdigkeiten, Touren und Ausflüge - alle Orlando Aktivitäten auf einen Blick.", + "visible_link": "www.tripadvisor.de › … › Florida (FL) › Zentralflorida › Orlando", + "rank": 2 + }, + { + "link": "https://www.tripadvisor.de/Tourism-g34515-Orlando_Florida-Vacations.html", + "title": "Orlando, FL: Tourismus in Orlando - TripAdvisor", + "snippet": "Vom Magic Kingdom bis hin zu traumhaften Spa-Behandlungen, Orlando hält seine Versprechen für alle Geschmäcker. Verbringen Sie einen Tag in den berühmten Themenparks von Disney, besuchen Sie die Delfine im SeaWorld oder genießen Sie den Nervenkitzel in einer Busch Gardens-Achterbahn.", + "visible_link": "www.tripadvisor.de › USA › Florida (FL) › Zentralflorida", + "rank": 3 + }, + { + "link": "https://wikitravel.org/de/Orlando", + "title": "Orlando – Wikitravel", + "snippet": "Orlando ist eine Stadt im Zentrum Floridas ungefähr auf halber Strecke zwischen Miami und Jacksonville und ungefähr 130 km nordöstlich von Tampa.", + "visible_link": "https://wikitravel.org/de/Orlando", + "rank": 4 + }, + { + "link": "http://www.visitorlando.com/GE-GL/", + "title": "www.visitorlando.com", + "snippet": "Object Moved This document may be found here", + "visible_link": "www.visitorlando.com/GE-GL", + "rank": 5 + }, + { + "link": "http://www.florida-orlando.de/", + "title": "Orlando Reiseführer - Orlando Florida", + "snippet": "Herzlich Willkommen beim Orlando Reiseführer Hier bekommen Sie nützliche Informationen für Ihre geplante Reise nach Orlando in Florida und können beliebte Hotels und Ausflüge Online buchen.", + "visible_link": "www.florida-orlando.de", + "rank": 6 + }, + { + "link": "https://www.tripadvisor.de/Hotels-g34515-Orlando_Florida-Hotels.html", + "title": "DIE 10 BESTEN Hotels in Orlando 2019 ab 50€ (günstige ...", + "snippet": "Beste Hotels in Orlando bei TripAdvisor: Finden Sie 641.626 Bewertungen von Reisenden, authentische Reisefotos und Top-Angebote für 393 Hotels in Orlando, FL.", + "visible_link": "www.tripadvisor.de › … › Florida (FL) › Zentralflorida › Orlando", + "rank": 7 + } + ] + } + }, + "Lubbock": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:15 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.200.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Lubbock_(Texas)", + "title": "Lubbock (Texas) – Wikipedia", + "snippet": "Lubbock ist die elftgrößte Stadt des US-Bundesstaates Texas und Sitz der Countyverwaltung (County Seat) des Lubbock Countys. Sie liegt im Nordwesten des Staates in einer Region, die früher als Llano Estacado bekannt war.", + "visible_link": "https://de.wikipedia.org/wiki/Lubbock_(Texas)", + "rank": 1 + }, + { + "link": "https://de-de.facebook.com/Lubbock-Town-eV-1440549946187548/", + "title": "Lubbock Town e.V. - Startseite | Facebook", + "snippet": "Lubbock Town e.V., Weilerswist. Gefällt 1.692 Mal · 78 Personen sprechen darüber. Dies ist die Facebookseite rund um den Verein \"Lubbock Town\" . Hier...", + "visible_link": "https://de-de.facebook.com/Lubbock-Town-eV-1440549946187548", + "rank": 2 + }, + { + "link": "https://de.wikipedia.org/wiki/Lubbock", + "title": "Lubbock – Wikipedia", + "snippet": "Lubbock ist der Familienname folgender Personen: Eric Lubbock, 4. Baron Avebury (1928–2016), britischer Politiker (Liberal Demokrat) Francis Lubbock (1815–1905), US-amerikanischer Politiker", + "visible_link": "https://de.wikipedia.org/wiki/Lubbock", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.de/Attractions-g56208-Activities-Lubbock_Texas.html", + "title": "DIE TOP 10 Sehenswürdigkeiten in Lubbock 2019 (mit fotos ...", + "snippet": "", + "visible_link": "www.tripadvisor.de › USA › Texas (TX) › Lubbock", + "rank": 4 + }, + { + "link": "https://en.wikipedia.org/wiki/Lubbock,_Texas", + "title": "Lubbock, Texas - Wikipedia", + "snippet": "Lubbock (/ ˈ l ʌ b ə k / LUB-ək) is the 11th most-populous city in the U.S. state of Texas and the county seat of Lubbock County. With a population of 256,042 in 2015, the city is also the 83rd most-populous in the United States.", + "visible_link": "https://en.wikipedia.org/wiki/Lubbock,_Texas", + "rank": 5 + }, + { + "link": "https://www.mapquest.com/us/texas/lubbock-tx-282041940", + "title": "Lubbock, TX - Lubbock, Texas Map & Directions - …", + "snippet": "Lubbock ( /lʌbək/) is a city in and the county seat of Lubbock County, Texas, United States. The city is located in the northwestern part of the state, a region known historically as the Llano Estacado, and the home of Texas Tech University and Lubbock Christian University.", + "visible_link": "https://www.mapquest.com/us/texas/lubbock-tx-282041940", + "rank": 6 + }, + { + "link": "https://de-de.facebook.com/Lubbocks", + "title": "The Lubbocks - Startseite | Facebook", + "snippet": "The Lubbocks. Gefällt 464 Mal. Dig that real Honky Tonk sound !", + "visible_link": "https://de-de.facebook.com/Lubbocks", + "rank": 7 + }, + { + "link": "https://akamegakill.fandom.com/wiki/Lubbock", + "title": "Lubbock | Akame Ga Kill! Wiki | FANDOM …", + "snippet": "Appearance. Lubbock was a young man with shoulder-length green hair that covers his left eye, green eyes and red goggles on top of his head. He wore a long green jacket with a fur-trimmed hood over a white and red ringer shirt and blue jeans with brown shoes.", + "visible_link": "https://akamegakill.fandom.com/wiki/Lubbock", + "rank": 8 + }, + { + "link": "https://www.drmartens.com/de/de/p/mens-shoes-grizzly-lubbock", + "title": "LUBBOCK GRIZZLY | AW18 | Dr. Martens Offizieller Online Shop", + "snippet": "Stabil. Strapazierfähig. Und gefertigt aus dem festen und robusten Grizzly Leder. Diese Kombination macht den 3-Loch-Schuh Lubbock für Herren absolut alltagstauglich.", + "visible_link": "https://www.drmartens.com/de/de/p/mens-shoes-grizzly-lubbock", + "rank": 9 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g56208-Lubbock_Texas-Vacations.html", + "title": "Lubbock 2019: Best of Lubbock, TX Tourism - …", + "snippet": "The legacy of Buddy Holly lives on in his birthplace of Lubbock, where a museum, a walk of fame and an annual music festival honor musicians hailing from the area.", + "visible_link": "www.tripadvisor.com › United States › Texas (TX)", + "rank": 10 + } + ] + } + }, + "Chesapeake": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:18 GMT", + "no_results": false, + "effective_query": "", + "num_results": "13.100.000 Ergebnisse", + "results": [ + { + "link": "https://de.wikipedia.org/wiki/Chesapeake_Bay", + "title": "Chesapeake Bay – Wikipedia", + "snippet": "Die Chesapeake Bay ist die größte Flussmündung in den USA. Sie ist eine südwärts zum Atlantik hin verlaufende Bucht desselben zwischen der Delmarva-Halbinsel im Osten und dem nordamerikanischen Festland im Westen und von den Bundesstaaten Virginia und Maryland umgeben, für die sie eine der bedeutendsten Naturlandschaften darstellt.", + "visible_link": "https://de.wikipedia.org/wiki/Chesapeake_Bay", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Chesapeake_(Virginia)", + "title": "Chesapeake (Virginia) – Wikipedia", + "snippet": "Chesapeake ist eine kreisfreie Stadt in der Region South Hampton Roads im Osten des US-Bundesstaates Virginia. Die Einwohnerzahl lag 2010 bei 222.209 Einwohnern.", + "visible_link": "https://de.wikipedia.org/wiki/Chesapeake_(Virginia)", + "rank": 2 + }, + { + "link": "https://www.onvista.de/aktien/CHESAPEAKE-GOLD-Aktie-CA1651841027", + "title": "CHESAPEAKE GOLD Aktie - onvista.de", + "snippet": "zur Übersicht Handelsplätze sponsored by Aktuelle wikifolio Trades zu CHESAPEAKE GOLD Mehr Informationen: Auf wikifolio.com beobachten Sie aktiv betreute Handelsstrategien von Tradern.", + "visible_link": "https://www.onvista.de/aktien/CHESAPEAKE-GOLD-Aktie-CA1651841027", + "rank": 3 + }, + { + "link": "https://www.chk.com/", + "title": "Chesapeake Energy Corporation", + "snippet": "Chesapeake Energy Corporation is the second-largest producer of natural gas, the 11th largest producer of oil and natural gas liquids and the most active driller of onshore wells in the U.S. Headquartered in Oklahoma City, the company's operations are focused on discovering and developing unconventional natural gas and oil fields onshore in the ...", + "visible_link": "https://www.chk.com", + "rank": 4 + }, + { + "link": "https://www.vdh.de/welpen/mein-welpe/chesapeake-bay-retriever", + "title": "Chesapeake Bay Retriever » VDH Rasselexikon 2019", + "snippet": "ALLGEMEINES ERSCHEINUNGSBILD: Als Meister an Land wie im Wasser wurde der Chesapeake Bay Retriever entlang der Chesapeake Bay für die Wasserjagd entwickelt, um in den widrigsten Witterungs- und Wasserbedingungen stand zu halten, oft auch das …", + "visible_link": "https://www.vdh.de/welpen/mein-welpe/chesapeake-bay-retriever", + "rank": 5 + }, + { + "link": "https://www.finanznachrichten.de/nachrichten-aktien/chesapeake-energy-corporation.htm", + "title": "CHESAPEAKE ENERGY AKTIEN News | 885725 Nachrichten", + "snippet": "43 Zeilen · News zur CHESAPEAKE ENERGY AKTIE und aktueller Realtime-Aktienkurs Chesapeake …", + "visible_link": "https://www.finanznachrichten.de/nachrichten-aktien/chesapeake...", + "rank": 6 + } + ] + } + }, + "Boise City": { + "1": { + "time": "Thu, 28 Feb 2019 14:29:21 GMT", + "no_results": false, + "effective_query": "", + "num_results": "47.600.000 Ergebnisse", + "results": [ + { + "link": "https://www.cityofboise.org/", + "title": "Home - City of Boise", + "snippet": "The Mayor works full-time, managing the day-to-day operations of the City and providing leadership and policy direction to the City Council. The Mayor chairs all meetings of the City Council, voting only in …", + "visible_link": "https://www.cityofboise.org", + "rank": 1 + }, + { + "link": "https://de.wikipedia.org/wiki/Boise_City_(Oklahoma)", + "title": "Boise City (Oklahoma) – Wikipedia", + "snippet": "Boise City ist eine Stadt in Oklahoma in den USA und der Verwaltungssitz des Cimarron County. Der Ort hat 1483 Einwohner (Stand: 2000). 'Boise' wird Beuß [bɔis] ausgesprochen, im Unterschied zur gleich geschriebenen Hauptstadt von Idaho, die Beußi [ˈbɔisi] ausgesprochen wird.", + "visible_link": "https://de.wikipedia.org/wiki/Boise_City_(Oklahoma)", + "rank": 2 + }, + { + "link": "https://www.wetteronline.de/wetter/boise-city", + "title": "Wetter Boise City - aktuelle Wettervorhersage von WetterOnline", + "snippet": "Wetter Boise City. Das Wetter für Boise City im Überblick. Mit dem RegenRadar verfolgen Sie live Regen, Schnee und Wolken. Ob Regen, Wind, Regenrisiko, Temperatur oder Sonnenstunden – alle Wetterdaten der Region Boise City finden Sie hier im Detail.", + "visible_link": "www.wetteronline.de › … › USA › Rocky Mountains › Oklahoma", + "rank": 3 + }, + { + "link": "https://en.wikipedia.org/wiki/Boise_City,_Oklahoma", + "title": "Boise City, Oklahoma - Wikipedia", + "snippet": "Boise City / ˈ b ɔɪ s / is a city in and the county seat of Cimarron County, Oklahoma, United States. The population was 1,266 at the 2010 census, a decline of 14.6 percent from 1,483 in 2000. According to the Encyclopedia of Oklahoma History and Culture, the origin of the town name is unclear.", + "visible_link": "https://en.wikipedia.org/wiki/Boise_City,_Oklahoma", + "rank": 4 + }, + { + "link": "https://www.wetteronline.de/wettertrend/boise-city", + "title": "14-Tage-Wetter Boise City - WetterOnline", + "snippet": "Wetterbericht Boise City. Nachdem sich beim Wetter am Montag die Sonne durch die Wolken gekämpft hat, steht einem makellosen Himmel über Boise City nichts mehr im Wege.", + "visible_link": "www.wetteronline.de › … › Oklahoma › Boise City", + "rank": 5 + }, + { + "link": "https://www.facebook.com/BoiseCity/", + "title": "City of Boise - Home | Facebook", + "snippet": "City of Boise, Boise, ID. 17K likes. Our Vision: To Make Boise the Most Livable City in the Country. Visit us online at www.cityofboise.org", + "visible_link": "https://www.facebook.com/BoiseCity", + "rank": 6 + }, + { + "link": "https://www.hotel.de/de/candlewood-suites-boise---towne-square/hotel-206683/", + "title": "Hotel Candlewood Suites BOISE - TOWNE SQUARE in Boise City ...", + "snippet": "Hotel Candlewood Suites BOISE - TOWNE SQUARE in Boise City – Jetzt einfach, schell & sicher buchen bei HOTEL DE! Günstige Preise Exklusive Businessrabatte bis zu 30 % NEU: Miles & More Prämienmeilen bei jeder Buchung!", + "visible_link": "https://www.hotel.de/de/candlewood-suites-boise---towne-square/...", + "rank": 7 + }, + { + "link": "https://pds.cityofboise.org/", + "title": "City of Boise | Planning & Development Services", + "snippet": "Boise’s Planning and Development Services Department (PDS) is tasked with ensuring new developments and other land use changes throughout the city help Boise achieve its goal of becoming the most livable city in the country.", + "visible_link": "https://pds.cityofboise.org", + "rank": 8 + }, + { + "link": "https://www.tripadvisor.com/Tourism-g51211-Boise_City_Oklahoma-Vacations.html", + "title": "Boise City 2019: Best of Boise City, OK Tourism - …", + "snippet": "Boise City Tourism: TripAdvisor has 264 reviews of Boise City Hotels, Attractions, and Restaurants making it your best Boise City resource.", + "visible_link": "www.tripadvisor.com › United States › Oklahoma (OK)", + "rank": 9 + }, + { + "link": "https://de.wikipedia.org/wiki/Boise", + "title": "Boise – Wikipedia", + "snippet": "Boise [ˈbɔɪsi] (auch Boise City) ist die Hauptstadt des US-Bundesstaats Idaho und zudem Sitz der Countyverwaltung (County Seat) des Ada County.", + "visible_link": "https://de.wikipedia.org/wiki/Boise", + "rank": 10 + } + ] + } + } +} \ No newline at end of file diff --git a/examples/results/data.json b/examples/results/data.json new file mode 100644 index 0000000..02393a0 --- /dev/null +++ b/examples/results/data.json @@ -0,0 +1,158 @@ +{ + "news": { + "1": { + "time": "Thu, 28 Feb 2019 14:24:51 GMT", + "num_results": "Ungefähr 25.270.000.000 Ergebnisse (0,49 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://news.google.de/", + "title": "Google Newshttps://news.google.de/Ähnliche Seiten", + "snippet": "Ausführliche und aktuelle Beiträge - von Google News aus verschiedenen Nachrichtenquellen aus aller Welt zusammengetragen.", + "visible_link": "https://news.google.de/", + "date": "", + "rank": 1 + }, + { + "link": "https://www.rtl.de/cms/news.html", + "title": "News: Aktuelle Nachrichten, Schlagzeilen und Videos | RTL.dehttps://www.rtl.de/cms/news.html", + "snippet": "Aktuelle Nachrichten aus Deutschland und der Welt auf einen Blick: Bei RTL.de finden Sie die News von heute, spannende Hintergründe und Videos.", + "visible_link": "https://www.rtl.de/cms/news.html", + "date": "", + "rank": 2 + }, + { + "link": "https://www.zeit.de/news/index", + "title": "Schlagzeilen, News und Newsticker | ZEIT ONLINE - Die Zeithttps://www.zeit.de/news/index", + "snippet": "Aktuelle News und Schlagzeilen im Newsticker von ZEIT ONLINE. Lesen Sie hier die neuesten Nachrichten.", + "visible_link": "https://www.zeit.de/news/index", + "date": "", + "rank": 3 + }, + { + "link": "https://www.bild.de/news/startseite/news/news-16804530.bild.html", + "title": "News aktuell aus Deutschland und der Welt - Bild.dehttps://www.bild.de/news/startseite/news/news-16804530.bild.html", + "snippet": "Aktuelle News aus Deutschland, Europa und der Welt. Alle Informationen, Bilder und Videos zu Skandalen, Krisen und Sensationen bei BILD.de.", + "visible_link": "https://www.bild.de/news/startseite/news/news-16804530.bild.html", + "date": "", + "rank": 4 + }, + { + "link": "http://www.news.de/", + "title": "news.de - mehr als Nachrichten und News, die Sie bewegenwww.news.de/Ähnliche Seiten", + "snippet": "Promi News und Aktuelles aus Sport, TV & Web. Jetzt Sportnachrichten von Fußball bis Boxen und das Neueste aus Klatsch und Tratsch per Newsticker, Fotos ...", + "visible_link": "www.news.de/", + "date": "", + "rank": 5 + }, + { + "link": "https://www.mopo.de/news", + "title": "News - Aktuelle Nachrichten aus Deutschland und der Welt. | MOPO.dehttps://www.mopo.de/news", + "snippet": "News - Aktuelle Nachrichten aus Hamburg, der Welt, zum HSV und der Welt der Promis.", + "visible_link": "https://www.mopo.de/news", + "date": "", + "rank": 6 + }, + { + "link": "https://www.t-online.de/nachrichten/", + "title": "Politik aktuell: Nachrichten aus Deutschland, Europa und der Welthttps://www.t-online.de/nachrichten/", + "snippet": "Trump trifft Kim: Der Nordkorea-Gipfel in Vietnam im News-Blog · Krise in Venezuela: Aktuelle Entwicklungen, ... E-Mails und News unterwegs immer dabei.", + "visible_link": "https://www.t-online.de/nachrichten/", + "date": "", + "rank": 7 + }, + { + "link": "https://news.google.com/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFZxYUdjU0FtUmxHZ0pFUlNnQVAB?hl=de&gl=DE&ceid=DE%3Ade", + "title": "Google News - Schlagzeilen - Neuestehttps://news.google.com/.../CAAqJggKIiBDQkFTRWdvSUwyMHZNRFZxYUdjU0FtUm...", + "snippet": "Mit Google News kannst du zum Thema Schlagzeilen vollständige Artikel lesen, Videos ansehen und in Tausenden von Titeln stöbern.", + "visible_link": "https://news.google.com/.../CAAqJggKIiBDQkFTRWdvSUwyMHZNRFZxYUdjU0FtUm...", + "date": "", + "rank": 8 + }, + { + "link": "https://www.n-tv.de/", + "title": "Nachrichten, aktuelle Schlagzeilen und Videos - n-tv.dehttps://www.n-tv.de/", + "snippet": "Nachrichten seriös, schnell und kompetent. Artikel und Videos aus Politik, Wirtschaft, Börse, Sport und News aus aller Welt.", + "visible_link": "https://www.n-tv.de/", + "date": "", + "rank": 9 + } + ] + } + }, + "se-scraper": { + "1": { + "time": "Thu, 28 Feb 2019 14:24:51 GMT", + "num_results": "Ungefähr 16.400.000 Ergebnisse (0,27 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://www.npmjs.com/package/se-scraper", + "title": "se-scraper - npmhttps://www.npmjs.com/package/se-scraperIm CacheDiese Seite übersetzen", + "snippet": "07.02.2019 - A simple library using puppeteer to scrape several search engines such as Google, Duckduckgo and Bing.", + "visible_link": "https://www.npmjs.com/package/se-scraper", + "date": "07.02.2019 - ", + "rank": 1 + }, + { + "link": "https://github.com/NikolaiT/se-scraper", + "title": "GitHub - NikolaiT/se-scraper: Javascript scraping module based on ...https://github.com/NikolaiT/se-scraperIm CacheDiese Seite übersetzen", + "snippet": "Javascript scraping module based on puppeteer for many different search engines... - NikolaiT/se-scraper.", + "visible_link": "https://github.com/NikolaiT/se-scraper", + "date": "", + "rank": 2 + }, + { + "link": "https://github.com/nyancat18/Se-Scraper", + "title": "GitHub - nyancat18/Se-Scraper: se-scraper your siteshttps://github.com/nyancat18/Se-ScraperIm CacheDiese Seite übersetzen", + "snippet": "se-scraper your sites. Contribute to nyancat18/Se-Scraper development by creating an account on GitHub.", + "visible_link": "https://github.com/nyancat18/Se-Scraper", + "date": "", + "rank": 3 + }, + { + "link": "http://konjugator.reverso.net/konjugation-franzosisch-verb-se%20scraper.html", + "title": "Konjugation se scraper | Konjugieren verb se scraper Französisch ...konjugator.reverso.net/konjugation-franzosisch-verb-se%20scraper.html", + "snippet": "Reverso-Konjugation: Konjugation des französischen Verbs se scraper, Konjugator für französische Verben, unregelmäßige Verben, Übersetzung,Grammatik.", + "visible_link": "konjugator.reverso.net/konjugation-franzosisch-verb-se%20scraper.html", + "date": "", + "rank": 4 + }, + { + "link": "https://swedishicescraper.se/", + "title": "Swedish Ice Scraper: Onlinehttps://swedishicescraper.se/Im CacheDiese Seite übersetzen", + "snippet": "The original Swedish Ice Scraper - best in test. ... solid Acrylic Glass and use diamond polishing to sharpen the scraping edges. ... info@swedishicescraper.se.", + "visible_link": "https://swedishicescraper.se/", + "date": "", + "rank": 5 + }, + { + "link": "https://www.blackhatworld.com/seo/any-yandex-scrapers-available-or-universal-se-scraper.243421/", + "title": "Any yandex scrapers available? Or universal SE scraper ...https://www.blackhatworld.com › ... › Black Hat SEO ToolsIm CacheDiese Seite übersetzen", + "snippet": "10.10.2010 - Mostly blogs & stuff like that. Is Hrefer for yandex only or there are other SEs? How much is it? Advertise on BHW ...", + "visible_link": "https://www.blackhatworld.com › ... › Black Hat SEO Tools", + "date": "10.10.2010 - ", + "rank": 6 + }, + { + "link": "http://network.ubotstudio.com/forum/index.php/topic/8648-sell-free-sescraper-scrape-search-engines-with-long-lists-of-queries/", + "title": "[SELL] FREE - SEscraper - scrape search engines with long lists of ...network.ubotstudio.com › ... › Sell › Bots and ScriptsIm CacheDiese Seite übersetzen", + "snippet": "03.12.2011 - SEscraper. Scrape results from: Google Yahoo Bing AOL Enter one or more queries as well as an optional list of keywords to append to each ...", + "visible_link": "network.ubotstudio.com › ... › Sell › Bots and Scripts", + "date": "03.12.2011 - ", + "rank": 7 + }, + { + "link": "https://netpeaksoftware.com/blog/netpeak-checker-3-0-serp-scraping", + "title": "Netpeak Checker 3.0: SERP Scraping – Netpeak Software Bloghttps://netpeaksoftware.com/.../netpeak-checker-3-0-serp-scrapin...Im CacheDiese Seite übersetzen", + "snippet": "19.09.2018 - With a new tool under an 'SE Scraper' nickname you can get Google, Bing, Yahoo, and Yandex search results in a structured table with a lot of ...", + "visible_link": "https://netpeaksoftware.com/.../netpeak-checker-3-0-serp-scrapin...", + "date": "19.09.2018 - ", + "rank": 8 + } + ] + } + } +} \ No newline at end of file diff --git a/examples/results/out.json b/examples/results/out.json new file mode 100644 index 0000000..2e6874c --- /dev/null +++ b/examples/results/out.json @@ -0,0 +1,172 @@ +{ 'scraping scrapeulous.com': + { '1': + { time: 'Tue, 29 Jan 2019 21:39:22 GMT', + num_results: 'Ungefähr 145 Ergebnisse (0,18 Sekunden) ', + no_results: false, + effective_query: '', + results: + [ { link: 'https://scrapeulous.com/', + title: + 'Scrapeuloushttps://scrapeulous.com/Im CacheDiese Seite übersetzen', + snippet: + 'Scrapeulous.com allows you to scrape various search engines automatically ... or to find hidden links, Scrapeulous.com enables you to scrape a ever increasing ...', + visible_link: 'https://scrapeulous.com/', + date: '', + rank: 1 }, + { link: 'https://scrapeulous.com/about/', + title: + 'About - Scrapeuloushttps://scrapeulous.com/about/Im CacheDiese Seite übersetzen', + snippet: + 'Scrapeulous.com allows you to scrape various search engines automatically and in large quantities. The business requirement to scrape information from ...', + visible_link: 'https://scrapeulous.com/about/', + date: '', + rank: 2 }, + { link: 'https://scrapeulous.com/howto/', + title: + 'Howto - Scrapeuloushttps://scrapeulous.com/howto/Im CacheDiese Seite übersetzen', + snippet: + 'We offer scraping large amounts of keywords for the Google Search Engine. Large means any number of keywords between 40 and 50000. Additionally, we ...', + visible_link: 'https://scrapeulous.com/howto/', + date: '', + rank: 3 }, + { link: 'https://github.com/NikolaiT/se-scraper', + title: + 'GitHub - NikolaiT/se-scraper: Javascript scraping module based on ...https://github.com/NikolaiT/se-scraperIm CacheDiese Seite übersetzen', + snippet: + '24.12.2018 - Javascript scraping module based on puppeteer for many different search ... for many different search engines... https://scrapeulous.com/.', + visible_link: 'https://github.com/NikolaiT/se-scraper', + date: '24.12.2018 - ', + rank: 4 }, + { link: + 'https://github.com/NikolaiT/GoogleScraper/blob/master/README.md', + title: + 'GoogleScraper/README.md at master · NikolaiT/GoogleScraper ...https://github.com/NikolaiT/GoogleScraper/blob/.../README.mdIm CacheÄhnliche SeitenDiese Seite übersetzen', + snippet: + 'GoogleScraper - Scraping search engines professionally. Scrapeulous.com - Scraping Service. GoogleScraper is a open source tool and will remain a open ...', + visible_link: + 'https://github.com/NikolaiT/GoogleScraper/blob/.../README.md', + date: '', + rank: 5 }, + { link: 'https://googlescraper.readthedocs.io/', + title: + 'Welcome to GoogleScraper\'s documentation! — GoogleScraper ...https://googlescraper.readthedocs.io/Im CacheDiese Seite übersetzen', + snippet: + 'Welcome to GoogleScraper\'s documentation!¶. Contents: GoogleScraper - Scraping search engines professionally · Scrapeulous.com - Scraping Service ...', + visible_link: 'https://googlescraper.readthedocs.io/', + date: '', + rank: 6 }, + { link: 'https://incolumitas.com/pages/scrapeulous/', + title: + 'Coding, Learning and Business Ideas – Scrapeulous.com - Incolumitashttps://incolumitas.com/pages/scrapeulous/Im CacheDiese Seite übersetzen', + snippet: + 'A scraping service for scientists, marketing professionals, analysts or SEO folk. In autumn 2018, I created a scraping service called scrapeulous.com. There you ...', + visible_link: 'https://incolumitas.com/pages/scrapeulous/', + date: '', + rank: 7 }, + { link: 'https://incolumitas.com/', + title: + 'Coding, Learning and Business Ideashttps://incolumitas.com/Im CacheDiese Seite übersetzen', + snippet: + 'Scraping Amazon Reviews using Headless Chrome Browser and Python3. Posted on Mi ... GoogleScraper Tutorial - How to scrape 1000 keywords with Google.', + visible_link: 'https://incolumitas.com/', + date: '', + rank: 8 }, + { link: 'https://en.wikipedia.org/wiki/Search_engine_scraping', + title: + 'Search engine scraping - Wikipediahttps://en.wikipedia.org/wiki/Search_engine_scrapingIm CacheDiese Seite übersetzen', + snippet: + 'Search engine scraping is the process of harvesting URLs, descriptions, or other information from search engines such as Google, Bing or Yahoo. This is a ...', + visible_link: 'https://en.wikipedia.org/wiki/Search_engine_scraping', + date: '', + rank: 9 }, + { link: + 'https://readthedocs.org/projects/googlescraper/downloads/pdf/latest/', + title: + 'GoogleScraper Documentation - Read the Docshttps://readthedocs.org/projects/googlescraper/downloads/.../latest...Im CacheDiese Seite übersetzen', + snippet: + '23.12.2018 - Contents: 1 GoogleScraper - Scraping search engines professionally. 1. 1.1 ... For this reason, I created the web service scrapeulous.com.', + visible_link: + 'https://readthedocs.org/projects/googlescraper/downloads/.../latest...', + date: '23.12.2018 - ', + rank: 10 } ] }, + '2': + { time: 'Tue, 29 Jan 2019 21:39:24 GMT', + num_results: 'Seite 2 von ungefähr 145 Ergebnissen (0,20 Sekunden) ', + no_results: false, + effective_query: '', + results: + [ { link: 'https://pypi.org/project/CountryGoogleScraper/', + title: + 'CountryGoogleScraper · PyPIhttps://pypi.org/project/CountryGoogleScraper/Im CacheDiese Seite übersetzen', + snippet: + 'A module to scrape and extract links, titles and descriptions from various search ... Look [here to get an idea how to use asynchronous mode](http://scrapeulous.', + visible_link: 'https://pypi.org/project/CountryGoogleScraper/', + date: '', + rank: 1 }, + { link: 'https://www.youtube.com/watch?v=a6xn6rc9GbI', + title: + 'scrapeulous intro - YouTubehttps://www.youtube.com/watch?v=a6xn6rc9GbIDiese Seite übersetzen', + snippet: + 'scrapeulous intro. Scrapeulous Scrapeulous. Loading... Unsubscribe from ... on Dec 16, 2018. Introduction ...', + visible_link: 'https://www.youtube.com/watch?v=a6xn6rc9GbI', + date: '', + rank: 3 }, + { link: + 'https://www.reddit.com/r/Python/comments/2tii3r/scraping_260_search_queries_in_bing_in_a_matter/', + title: + 'Scraping 260 search queries in Bing in a matter of seconds using ...https://www.reddit.com/.../scraping_260_search_queries_in_bing...Im CacheDiese Seite übersetzen', + snippet: + '24.01.2015 - Scraping 260 search queries in Bing in a matter of seconds using asyncio and aiohttp. (scrapeulous.com). submitted 3 years ago by ...', + visible_link: + 'https://www.reddit.com/.../scraping_260_search_queries_in_bing...', + date: '24.01.2015 - ', + rank: 4 }, + { link: 'https://twitter.com/incolumitas_?lang=de', + title: + 'Nikolai Tschacher (@incolumitas_) | Twitterhttps://twitter.com/incolumitas_?lang=deIm CacheÄhnliche SeitenDiese Seite übersetzen', + snippet: + 'Learn how to scrape millions of url from yandex and google or bing with: http://scrapeulous.com/googlescraper-market-analysis.html … 0 replies 0 retweets 0 ...', + visible_link: 'https://twitter.com/incolumitas_?lang=de', + date: '', + rank: 5 }, + { link: + 'http://blog.shodan.io/hostility-in-the-python-package-index/', + title: + 'Hostility in the Cheese Shop - Shodan Blogblog.shodan.io/hostility-in-the-python-package-index/Im CacheDiese Seite übersetzen', + snippet: + '22.02.2015 - https://zzz.scrapeulous.com/r? According to the author of the website, these hostile packages are used as honeypots. Honeypots are usually ...', + visible_link: 'blog.shodan.io/hostility-in-the-python-package-index/', + date: '22.02.2015 - ', + rank: 6 }, + { link: 'https://libraries.io/github/NikolaiT/GoogleScraper', + title: + 'NikolaiT/GoogleScraper - Libraries.iohttps://libraries.io/github/NikolaiT/GoogleScraperIm CacheDiese Seite übersetzen', + snippet: + 'A Python module to scrape several search engines (like Google, Yandex, Bing, ... https://scrapeulous.com/ ... You can install GoogleScraper comfortably with pip:', + visible_link: 'https://libraries.io/github/NikolaiT/GoogleScraper', + date: '', + rank: 7 }, + { link: 'https://pydigger.com/pypi/CountryGoogleScraper', + title: + 'CountryGoogleScraper - PyDiggerhttps://pydigger.com/pypi/CountryGoogleScraperDiese Seite übersetzen', + snippet: + '19.10.2016 - Look [here to get an idea how to use asynchronous mode](http://scrapeulous.com/googlescraper-260-keywords-in-a-second.html). ### Table ...', + visible_link: 'https://pydigger.com/pypi/CountryGoogleScraper', + date: '19.10.2016 - ', + rank: 8 }, + { link: 'https://hub.docker.com/r/cimenx/data-mining-penandtest/', + title: + 'cimenx/data-mining-penandtest - Docker Hubhttps://hub.docker.com/r/cimenx/data-mining-penandtest/Im CacheDiese Seite übersetzen', + snippet: + 'Container. OverviewTagsDockerfileBuilds · http://scrapeulous.com/googlescraper-260-keywords-in-a-second.html. Docker Pull Command. Owner. profile ...', + visible_link: 'https://hub.docker.com/r/cimenx/data-mining-penandtest/', + date: '', + rank: 9 }, + { link: 'https://www.revolvy.com/page/Search-engine-scraping', + title: + 'Search engine scraping | Revolvyhttps://www.revolvy.com/page/Search-engine-scrapingIm CacheDiese Seite übersetzen', + snippet: + 'Search engine scraping is the process of harvesting URLs, descriptions, or other information from search engines such as Google, Bing or Yahoo. This is a ...', + visible_link: 'https://www.revolvy.com/page/Search-engine-scraping', + date: '', + rank: 10 } ] } } } \ No newline at end of file diff --git a/examples/results/proxyresults.json b/examples/results/proxyresults.json new file mode 100644 index 0000000..61f4c1d --- /dev/null +++ b/examples/results/proxyresults.json @@ -0,0 +1,478 @@ +{ + "news": { + "1": { + "time": "Thu, 28 Feb 2019 14:26:28 GMT", + "num_results": "Ungefähr 25.270.000.000 Ergebnisse (0,40 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://news.google.de/", + "title": "Google Newshttps://news.google.de/Ähnliche Seiten", + "snippet": "Ausführliche und aktuelle Beiträge - von Google News aus verschiedenen Nachrichtenquellen aus aller Welt zusammengetragen.", + "visible_link": "https://news.google.de/", + "date": "", + "rank": 1 + }, + { + "link": "https://www.bild.de/news/startseite/news/news-16804530.bild.html", + "title": "News aktuell aus Deutschland und der Welt - Bild.dehttps://www.bild.de/news/startseite/news/news-16804530.bild.html", + "snippet": "Aktuelle News aus Deutschland, Europa und der Welt. Alle Informationen, Bilder und Videos zu Skandalen, Krisen und Sensationen bei BILD.de.", + "visible_link": "https://www.bild.de/news/startseite/news/news-16804530.bild.html", + "date": "", + "rank": 2 + }, + { + "link": "https://www.rtl.de/cms/news.html", + "title": "News: Aktuelle Nachrichten, Schlagzeilen und Videos | RTL.dehttps://www.rtl.de/cms/news.html", + "snippet": "Aktuelle Nachrichten aus Deutschland und der Welt auf einen Blick: Bei RTL.de finden Sie die News von heute, spannende Hintergründe und Videos.", + "visible_link": "https://www.rtl.de/cms/news.html", + "date": "", + "rank": 3 + }, + { + "link": "https://www.zeit.de/news/index", + "title": "Schlagzeilen, News und Newsticker | ZEIT ONLINE - Die Zeithttps://www.zeit.de/news/index", + "snippet": "Aktuelle News und Schlagzeilen im Newsticker von ZEIT ONLINE. Lesen Sie hier die neuesten Nachrichten.", + "visible_link": "https://www.zeit.de/news/index", + "date": "", + "rank": 4 + }, + { + "link": "http://www.news.de/", + "title": "news.de - mehr als Nachrichten und News, die Sie bewegenwww.news.de/Ähnliche Seiten", + "snippet": "Promi News und Aktuelles aus Sport, TV & Web. Jetzt Sportnachrichten von Fußball bis Boxen und das Neueste aus Klatsch und Tratsch per Newsticker, Fotos ...", + "visible_link": "www.news.de/", + "date": "", + "rank": 5 + }, + { + "link": "https://www.t-online.de/nachrichten/", + "title": "Politik aktuell: Nachrichten aus Deutschland, Europa und der Welthttps://www.t-online.de/nachrichten/", + "snippet": "Trump trifft Kim: Der Nordkorea-Gipfel in Vietnam im News-Blog · Krise in Venezuela: Aktuelle Entwicklungen, ... E-Mails und News unterwegs immer dabei.", + "visible_link": "https://www.t-online.de/nachrichten/", + "date": "", + "rank": 6 + }, + { + "link": "https://www.mopo.de/news", + "title": "News - Aktuelle Nachrichten aus Deutschland und der Welt. | MOPO.dehttps://www.mopo.de/news", + "snippet": "News - Aktuelle Nachrichten aus Hamburg, der Welt, zum HSV und der Welt der Promis.", + "visible_link": "https://www.mopo.de/news", + "date": "", + "rank": 7 + }, + { + "link": "https://news.google.com/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFZxYUdjU0FtUmxHZ0pFUlNnQVAB?hl=de&gl=DE&ceid=DE%3Ade", + "title": "Google News - Schlagzeilen - Neuestehttps://news.google.com/.../CAAqJggKIiBDQkFTRWdvSUwyMHZNRFZxYUdjU0FtUm...", + "snippet": "Mit Google News kannst du zum Thema Schlagzeilen vollständige Artikel lesen, Videos ansehen und in Tausenden von Titeln stöbern.", + "visible_link": "https://news.google.com/.../CAAqJggKIiBDQkFTRWdvSUwyMHZNRFZxYUdjU0FtUm...", + "date": "", + "rank": 8 + }, + { + "link": "https://www.n-tv.de/", + "title": "Nachrichten, aktuelle Schlagzeilen und Videos - n-tv.dehttps://www.n-tv.de/", + "snippet": "Nachrichten seriös, schnell und kompetent. Artikel und Videos aus Politik, Wirtschaft, Börse, Sport und News aus aller Welt.", + "visible_link": "https://www.n-tv.de/", + "date": "", + "rank": 9 + } + ] + } + }, + "i work too much": { + "1": { + "time": "Thu, 28 Feb 2019 14:26:30 GMT", + "num_results": "Ungefähr 4.500.000.000 Ergebnisse (0,33 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://www.themuse.com/advice/3-reasons-you-work-too-muchand-how-to-overcome-each-one", + "title": "3 Reasons You Work Too Much and How to Stop- The Musehttps://www.themuse.com/.../3-reasons-you-work-too-muchand-h...Im CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "There are three main reasons people work too much. Here's how to fight back against each one and attain better work-life balance.", + "visible_link": "https://www.themuse.com/.../3-reasons-you-work-too-muchand-h...", + "date": "", + "rank": 1 + }, + { + "link": "https://www.linguee.de/englisch-deutsch/uebersetzung/too+much+work.html", + "title": "too much work - Deutsch-Übersetzung – Linguee Wörterbuchhttps://www.linguee.de/englisch-deutsch/uebersetzung/too+much+work.htmlIm Cache", + "snippet": "Viele übersetzte Beispielsätze mit \"too much work\" – Deutsch-Englisch Wörterbuch und Suchmaschine für Millionen von Deutsch-Übersetzungen.", + "visible_link": "https://www.linguee.de/englisch-deutsch/uebersetzung/too+much+work.html", + "date": "", + "rank": 2 + }, + { + "link": "https://www.bustle.com/p/am-i-working-too-much-7-signs-its-time-to-slow-down-76583", + "title": "Am I Working Too Much? 7 Signs It's Time To Slow Down - Bustlehttps://www.bustle.com/.../am-i-working-too-much-7-signs-its-ti...Im CacheDiese Seite übersetzen", + "snippet": "28.08.2017 - Our society prides hard work so much, it can seem like there's no such thing as working too much. But there absolutely is. An overly demanding ...", + "visible_link": "https://www.bustle.com/.../am-i-working-too-much-7-signs-its-ti...", + "date": "28.08.2017 - ", + "rank": 3 + }, + { + "link": "https://www.lifehack.org/articles/lifestyle/ask-the-entrepreneurs-15-signs-youre-working-too-much-and-burning-out.html", + "title": "15 Signs You're Working Too Much and Burning Out - Lifehackhttps://www.lifehack.org/.../ask-the-entrepreneurs-15-signs-youre...Im CacheDiese Seite übersetzen", + "snippet": "Use that warning to evaluate if you're working too many hours or on tasks that can be easily outsourced, so you can fully enjoy every client conversation and ...", + "visible_link": "https://www.lifehack.org/.../ask-the-entrepreneurs-15-signs-youre...", + "date": "", + "rank": 4 + }, + { + "link": "https://www.huffingtonpost.com/chevonne-harris/24-things-only-people-who-work-entirely-too-much-will-understand_b_5510723.html", + "title": "24 Things Only People Who Work Entirely Too Much Will Understand ...https://www.huffingtonpost.com/.../24-things-only-people-who-...Im CacheDiese Seite übersetzen", + "snippet": "20.06.2014 - To all the people who are on a first-name basis with the office cleaning crew, are unfazed by empty parking lots on dark nights and can't go ...", + "visible_link": "https://www.huffingtonpost.com/.../24-things-only-people-who-...", + "date": "20.06.2014 - ", + "rank": 5 + }, + { + "link": "https://www.quora.com/How-much-work-is-too-much-work", + "title": "How much work is too much work? - Quorahttps://www.quora.com/How-much-work-is-too-much-workÄhnliche SeitenDiese Seite übersetzen", + "snippet": "19.09.2015 - I am a Workaholic and worst part of this is - i know that i am a workaholic. Dd it ever happened to you that after all those years of no great skills you suddenly get ...", + "visible_link": "https://www.quora.com/How-much-work-is-too-much-work", + "date": "19.09.2015 - ", + "rank": 6 + }, + { + "link": "https://www.theodysseyonline.com/16-signs-you-work-too-much", + "title": "16 Signs You Work Too Much - Odysseyhttps://www.theodysseyonline.com/16-signs-you-work-too-much", + "snippet": "You try to get coverage but because you're one of the few people at work who works too much, no one really wants to come in any more than their normal 8-15 ...", + "visible_link": "https://www.theodysseyonline.com/16-signs-you-work-too-much", + "date": "", + "rank": 7 + }, + { + "link": "https://www.thealternativedaily.com/how-too-much-work-ruins-health/", + "title": "How Much Work Is Too Much For Your Mental And Physical Health?https://www.thealternativedaily.com/how-too-much-work-ruins-h...Im CacheDiese Seite übersetzen", + "snippet": "Full time workers in the U.S. will typically clock up 47 hours per week of work — and that only includes paid work. Meanwhile, Aussies at the Australian National ...", + "visible_link": "https://www.thealternativedaily.com/how-too-much-work-ruins-h...", + "date": "", + "rank": 8 + }, + { + "link": "https://medium.com/s/story/when-you-enjoy-work-too-much-3d5083a0da5a", + "title": "Can You Enjoy Work Too Much? – Member Feature Stories – Mediumhttps://medium.com/.../when-you-enjoy-work-too-much-3d5083...Im CacheDiese Seite übersetzen", + "snippet": "10.09.2018 - Experiencing fun and relaxation at work doesn't make you a workaholic. We all find joy and meaning in different aspects of life.", + "visible_link": "https://medium.com/.../when-you-enjoy-work-too-much-3d5083...", + "date": "10.09.2018 - ", + "rank": 9 + }, + { + "link": "https://www.healthline.com/health/working-too-much-health-effects", + "title": "7 Health Effects of Working Too Much - Healthlinehttps://www.healthline.com/.../working-too-much-health-effectsIm CacheDiese Seite übersetzen", + "snippet": "03.05.2017 - From increased risk of heart disease to poor sleep, working too much can take a toll on your health. Here are some of the side effects, along ...", + "visible_link": "https://www.healthline.com/.../working-too-much-health-effects", + "date": "03.05.2017 - ", + "rank": 10 + } + ] + } + }, + "scrapeulous.com": { + "1": { + "time": "Thu, 28 Feb 2019 14:26:29 GMT", + "num_results": "Ungefähr 200 Ergebnisse (0,31 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://scrapeulous.com/", + "title": "Scrapeuloushttps://scrapeulous.com/Im CacheDiese Seite übersetzen", + "snippet": "Scraping search engines like Google, Bing and Duckduckgo in large quantities from many geographical regions with real browsers.", + "visible_link": "https://scrapeulous.com/", + "date": "", + "rank": 1 + }, + { + "link": "https://scrapeulous.com/about/", + "title": "Scraping search engines with real browsers in ... - Scrapeulous.comhttps://scrapeulous.com/about/Im CacheDiese Seite übersetzen", + "snippet": "Scrapeulous.com allows you to scrape various search engines automatically and in large quantities. The business requirement to scrape information from ...", + "visible_link": "https://scrapeulous.com/about/", + "date": "", + "rank": 2 + }, + { + "link": "https://blog.scrapeulous.com/", + "title": "Scrapeulous.com Bloghttps://blog.scrapeulous.com/Im CacheDiese Seite übersetzen", + "snippet": "04.02.2019 - This clean blog serves to publish the latest announcements and changes for scrapeulous.com We will publish instrucitons and general tutorials ...", + "visible_link": "https://blog.scrapeulous.com/", + "date": "04.02.2019 - ", + "rank": 3 + }, + { + "link": "https://scrapeulous.com/news/", + "title": "Scraping search engines with real browsers in large ... - Scrapeuloushttps://scrapeulous.com/news/Im CacheDiese Seite übersetzen", + "snippet": "Scrapeulous.com News Api allows you to query the most recent world news for an index composed of developed market equities. The performance of those ...", + "visible_link": "https://scrapeulous.com/news/", + "date": "", + "rank": 4 + }, + { + "link": "https://scrapeulous.com/faq/", + "title": "Scraping search engines with real browsers in ... - Scrapeulous.comhttps://scrapeulous.com/faq/Im CacheDiese Seite übersetzen", + "snippet": "02.02.2019 - Scraping search engines like Google, Bing and Duckduckgo in large quantities from many geographical regions with real browsers.", + "visible_link": "https://scrapeulous.com/faq/", + "date": "02.02.2019 - ", + "rank": 5 + }, + { + "link": "https://scrapeulous.com/howto/", + "title": "Scraping search engines with real browsers in ... - Scrapeulous.comhttps://scrapeulous.com/howto/Im CacheDiese Seite übersetzen", + "snippet": "06.02.2019 - We offer scraping large amounts of keywords for the Google Search Engine. Large means any number of keywords between 30 and 50000.", + "visible_link": "https://scrapeulous.com/howto/", + "date": "06.02.2019 - ", + "rank": 6 + }, + { + "link": "https://scrapeulous.com/contact/", + "title": "Contact - Scrapeuloushttps://scrapeulous.com/contact/Im CacheDiese Seite übersetzen", + "snippet": "Contact scrapeulous.com. Your email address. Valid email address where we are going to contact you. We will not send spam mail. Your inquiry.", + "visible_link": "https://scrapeulous.com/contact/", + "date": "", + "rank": 7 + }, + { + "link": "https://scrapeulous.com/scrape/", + "title": "Scraping search engines with real browsers in large ... - Scrapeuloushttps://scrapeulous.com/scrape/Im CacheDiese Seite übersetzen", + "snippet": "It is super easy to use scrapeulous.com, because you can just upload a text/CSV file with your keywords and submit your email address. With this information ...", + "visible_link": "https://scrapeulous.com/scrape/", + "date": "", + "rank": 8 + }, + { + "link": "https://incolumitas.com/", + "title": "Coding, Learning and Business Ideashttps://incolumitas.com/Im CacheDiese Seite übersetzen", + "snippet": "About · Contact · GoogleScraper · Lichess Autoplay-Bot · Projects · Scrapeulous.com · Site Notice · SVGCaptcha · Home Archives Categories Tags Atom ...", + "visible_link": "https://incolumitas.com/", + "date": "", + "rank": 9 + }, + { + "link": "https://twitter.com/scrapeulous", + "title": "Scrapeulous.com (@scrapeulous) | Twitterhttps://twitter.com/scrapeulousIm CacheDiese Seite übersetzen", + "snippet": "The latest Tweets from Scrapeulous.com (@scrapeulous): \"Creating software to realize the best scraping service at https://t.co/R5NUqSSrB5\"", + "visible_link": "https://twitter.com/scrapeulous", + "date": "", + "rank": 10 + } + ] + } + }, + "what to do?": { + "1": { + "time": "Thu, 28 Feb 2019 14:26:31 GMT", + "num_results": "Ungefähr 25.270.000.000 Ergebnisse (0,67 Sekunden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://www.mydomaine.com/things-to-do-when-bored", + "title": "96 Things to Do When You're Bored | MyDomainehttps://www.mydomaine.com/things-to-do-when-boredIm CacheDiese Seite übersetzen", + "snippet": "29.12.2018 - This book changed my life in many ways, but one of my key takeaways has to do with boredom. I am never bored. In fact, the word bored ...", + "visible_link": "https://www.mydomaine.com/things-to-do-when-bored", + "date": "29.12.2018 - ", + "rank": 1 + }, + { + "link": "https://www.thecrazytourist.com/25-best-things-frankfurt-germany/", + "title": "25 Best Things to Do in Frankfurt (Germany) - The Crazy Touristhttps://www.thecrazytourist.com › Travel Guides › GermanyIm CacheDiese Seite übersetzen", + "snippet": "Germany's big financial centre is a city of many sides. The central business district, Bankenviertel, captures your attention right away and has all ten of the tallest ...", + "visible_link": "https://www.thecrazytourist.com › Travel Guides › Germany", + "date": "", + "rank": 2 + }, + { + "link": "https://www.likealocalguide.com/frankfurt/things-to-do", + "title": "Top 28 Things To Do in Frankfurt 2019 - Best Activities in Frankfurthttps://www.likealocalguide.com/frankfurt/things-to-doIm CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "Frankfurt city guide featuring 28 best local sights, things to do & tours recommended by Frankfurt locals. Skip the tourist traps & explore Frankfurt like a local.", + "visible_link": "https://www.likealocalguide.com/frankfurt/things-to-do", + "date": "", + "rank": 3 + }, + { + "link": "https://www.tripadvisor.com/Attractions-g187337-Activities-Frankfurt_Hesse.html", + "title": "THE 15 BEST Things to Do in Frankfurt - 2019 (with Photos ...https://www.tripadvisor.com/Attractions-g187337-Activities-Fran...Im CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "Book your tickets online for the top things to do in Frankfurt, Germany on TripAdvisor: See 47213 traveler reviews and photos of Frankfurt tourist attractions.", + "visible_link": "https://www.tripadvisor.com/Attractions-g187337-Activities-Fran...", + "date": "", + "rank": 4 + }, + { + "link": "https://www.timeout.com/frankfurt/things-to-do/best-things-to-do-in-frankfurt", + "title": "10 Best Things to do in Frankfurt for Locals and Tourists - Time Outhttps://www.timeout.com/.../things-to-do/best-things-to-do-in-fra...Im CacheDiese Seite übersetzen", + "snippet": "09.07.2018 - Looking for the best things to do in Frankfurt? Check out our guide to local-approved restaurants, tours and more can't-miss activities in the ...", + "visible_link": "https://www.timeout.com/.../things-to-do/best-things-to-do-in-fra...", + "date": "09.07.2018 - ", + "rank": 5 + }, + { + "link": "https://www.lonelyplanet.com/germany/frankfurt-am-main/top-things-to-do/a/poi/1003203", + "title": "Top things to do in Frankfurt am Main, Germany - Lonely Planethttps://www.lonelyplanet.com/germany/...things-to-do/.../100320...Im CacheÄhnliche SeitenDiese Seite übersetzen", + "snippet": "Discover the best top things to do in Frankfurt am Main including Städel Museum, Kaiserdom, Senckenberg Museum.", + "visible_link": "https://www.lonelyplanet.com/germany/...things-to-do/.../100320...", + "date": "", + "rank": 6 + }, + { + "link": "https://www.atlasobscura.com/things-to-do/frankfurt-germany", + "title": "9 Cool and Unusual Things to Do in Frankfurt - Atlas Obscurahttps://www.atlasobscura.com/things-to-do/frankfurt-germanyIm CacheDiese Seite übersetzen", + "snippet": "Discover 9 hidden attractions, cool sights, and unusual things to do in Frankfurt, Germany from Pinkelbaum (Peeing Tree) to Henninger Turm.", + "visible_link": "https://www.atlasobscura.com/things-to-do/frankfurt-germany", + "date": "", + "rank": 7 + }, + { + "link": "https://lifehacks.io/what-to-do-when-your-bored/", + "title": "23 [REALLY] Fun Things To Do When You Are Bored - Life Hackshttps://lifehacks.io/what-to-do-when-your-bored/Im CacheDiese Seite übersetzen", + "snippet": "What to Do When You're Bored? Boredom could be real torture while there are people who yearn to feel that way because of their hectic schedules. It is kind of ...", + "visible_link": "https://lifehacks.io/what-to-do-when-your-bored/", + "date": "", + "rank": 8 + }, + { + "link": "https://www.planetware.com/tourist-attractions-/frankfurt-d-hs-fra.htm", + "title": "12 Top-Rated Tourist Attractions in Frankfurt | PlanetWarehttps://www.planetware.com/tourist...-/frankfurt-d-hs-fra.htmIm CacheDiese Seite übersetzen", + "snippet": "Considered a global city - it frequently ranks in the top ten best cities to live and do business - Frankfurt has also long been an important center for cultural and ...", + "visible_link": "https://www.planetware.com/tourist...-/frankfurt-d-hs-fra.htm", + "date": "", + "rank": 9 + }, + { + "link": "https://theculturetrip.com/europe/germany/articles/7-cool-and-unusual-things-to-do-in-frankfurt/", + "title": "7 Cool and Unusual Things to Do in Frankfurt - Culture Triphttps://theculturetrip.com › Europe › GermanyIm CacheDiese Seite übersetzen", + "snippet": "27.06.2018 - Frankfurt is the busiest airport in Germany, though unfortunately, not everyone realises it's worth stopping to spend time in the city. They don't ...", + "visible_link": "https://theculturetrip.com › Europe › Germany", + "date": "27.06.2018 - ", + "rank": 10 + } + ] + } + }, + "incolumitas.com": { + "1": { + "time": "Thu, 28 Feb 2019 14:26:29 GMT", + "num_results": "Ongeveer 86.900 resultaten (0,20 seconden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://incolumitas.com/", + "title": "incolumitas.comhttps://incolumitas.com/In cacheVertaal deze paginaContactArchivesIntroductionScrapeulous.comProjectsTagsMachine LearningSite NoticeGoogleScraperScraping", + "snippet": "Nikolai Tschacher's ideas and projects around IT security and computer science.", + "visible_link": "https://incolumitas.com/", + "date": "", + "rank": 1 + }, + { + "link": "https://en.wiktionary.org/wiki/incolumitas", + "title": "incolumitas - Wiktionaryhttps://en.wiktionary.org/wiki/incolumitasIn cacheVergelijkbaarVertaal deze pagina", + "snippet": "incolumitās f (genitive incolumitātis); third declension ... incolumitas in Charlton T. Lewis and Charles Short (1879) A Latin Dictionary , Oxford: Clarendon Press ...", + "visible_link": "https://en.wiktionary.org/wiki/incolumitas", + "date": "", + "rank": 2 + }, + { + "link": "https://www.linkedin.com/company/incolumitas", + "title": "INCOLUMITAS | LinkedInhttps://www.linkedin.com/company/incolumitasVertaal deze pagina", + "snippet": "Learn about working at INCOLUMITAS. Join LinkedIn today for free. See who you know at INCOLUMITAS, leverage your professional network, and get hired.", + "visible_link": "https://www.linkedin.com/company/incolumitas", + "date": "", + "rank": 3 + }, + { + "link": "https://books.google.nl/books?id=-5eGVvVSnGsC&pg=PA150&lpg=PA150&dq=incolumitas.com&source=bl&ots=u2qhYFQ3YS&sig=ACfU3U37dliQuuF7H_qBz0-9F0rBwW6OeQ&hl=nl&sa=X&ved=2ahUKEwiDlKmb0d7gAhUJ4KYKHfdNAe8Q6AEwEnoECAAQAQ", + "title": "The Making of the Monastic Community of Fulda, C.744-c.900https://books.google.nl/books?isbn=1107002818Vertaal deze pagina", + "snippet": "... too much ofa tangent to repeat their arguments here. to a large extent the argumentation hinges on one, single word: incolumitas, 'well-being', which can refer ...", + "visible_link": "https://books.google.nl/books?isbn=1107002818", + "date": "", + "rank": 4 + } + ] + } + }, + "javascript is hard": { + "1": { + "time": "Thu, 28 Feb 2019 14:26:31 GMT", + "num_results": "Ongeveer 1.550.000.000 resultaten (0,21 seconden) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "http://blog.thefirehoseproject.com/posts/why-is-javascript-so-hard-to-learn/", + "title": "Why is JavaScript So Hard To Learn? - Firehose Projectblog.thefirehoseproject.com/posts/why-is-javascript-so-hard-to-learn/", + "snippet": "", + "visible_link": "blog.thefirehoseproject.com/posts/why-is-javascript-so-hard-to-learn/", + "date": "", + "rank": 1 + }, + { + "link": "http://blog.thefirehoseproject.com/posts/why-is-javascript-so-hard-to-learn/", + "title": "Why is JavaScript So Hard To Learn? - Firehose Projectblog.thefirehoseproject.com/posts/why-is-javascript-so-hard-to-learn/", + "snippet": "", + "visible_link": "blog.thefirehoseproject.com/posts/why-is-javascript-so-hard-to-learn/", + "date": "", + "rank": 2 + }, + { + "link": "https://skillcrush.com/2018/06/27/how-hard-is-it-to-learn-javascript/", + "title": "How Hard Is it to Learn JavaScript? The Pros Weigh In - Skillcrushhttps://skillcrush.com/2018/06/.../how-hard-is-it-to-learn-javascript...In cacheVertaal deze pagina", + "snippet": "27 jun. 2018 - Are you thinking about learning JavaScript but concerned about how hard of a task that might be? Allow these developers with JavaScript ...", + "visible_link": "https://skillcrush.com/2018/06/.../how-hard-is-it-to-learn-javascript...", + "date": "27 jun. 2018 - ", + "rank": 3 + }, + { + "link": "http://blog.thefirehoseproject.com/posts/why-is-javascript-so-hard-to-learn/", + "title": "Why is JavaScript So Hard To Learn? - Firehose Projectblog.thefirehoseproject.com/.../why-is-javascript-so-hard-to-learn/In cacheVergelijkbaarVertaal deze pagina", + "snippet": "29 aug. 2016 - JavaScript is so hard to learn because it's an asynchronous programming language. It's also single-threaded, which means it uses its asynchronous nature in a radically different way than most other programming languages.", + "visible_link": "blog.thefirehoseproject.com/.../why-is-javascript-so-hard-to-learn/", + "date": "29 aug. 2016 - ", + "rank": 4 + }, + { + "link": "https://www.quora.com/Is-JavaScript-hard-to-learn", + "title": "Is JavaScript hard to learn? - Quorahttps://www.quora.com/Is-JavaScript-hard-to-learnVergelijkbaarVertaal deze pagina", + "snippet": "16 dec. 2015 - Suffice it to say that JavaScript, good JavaScript, is hard because there are many considerations outside of knowing how to code in it. Making sure that you ...", + "visible_link": "https://www.quora.com/Is-JavaScript-hard-to-learn", + "date": "16 dec. 2015 - ", + "rank": 5 + }, + { + "link": "https://www.thoughtco.com/how-hard-is-javascript-to-learn-2037676", + "title": "How Hard Is JavaScript to Learn? HTML Comparison - ThoughtCohttps://www.thoughtco.com › ... › JavaScript ProgrammingIn cacheVergelijkbaarVertaal deze pagina", + "snippet": "28 jan. 2019 - In many ways, JavaScript is one of the easiest programming language to learn as your first language. The way that it functions as an interpreted language within the web browser means that you can easily write even the most complex code by writing it a small piece at a time and testing it in the web browser as you go.", + "visible_link": "https://www.thoughtco.com › ... › JavaScript Programming", + "date": "28 jan. 2019 - ", + "rank": 6 + }, + { + "link": "https://www.reddit.com/r/webdev/comments/80zcx1/javascript_is_hard/", + "title": "Javascript IS hard. : webdev - Reddithttps://www.reddit.com/r/webdev/comments/.../javascript_is_hard/In cacheVertaal deze pagina", + "snippet": "28 feb. 2018 - I'm sure some of you may have seen the disaster of the thread stating that Javascript isn't hard. I'm here to tell you the opposite. Javascript is...", + "visible_link": "https://www.reddit.com/r/webdev/comments/.../javascript_is_hard/", + "date": "28 feb. 2018 - ", + "rank": 7 + }, + { + "link": "https://develoger.com/why-is-javascript-so-hard-bd3648db51a5", + "title": "Why is JavaScript so hard? – Develogerhttps://develoger.com/why-is-javascript-so-hard-bd3648db51a5In cacheVergelijkbaarVertaal deze pagina", + "snippet": "3 okt. 2016 - If you feel comfortable working with html but find it hard to experience ... Looking at the JavaScript and programming trough the eyes of CSS.", + "visible_link": "https://develoger.com/why-is-javascript-so-hard-bd3648db51a5", + "date": "3 okt. 2016 - ", + "rank": 8 + }, + { + "link": "https://teamtreehouse.com/community/is-learning-javascript-supposed-to-be-this-difficult-or-am-i-not-cut-out-for-this", + "title": "Is learning JavaScript supposed to be this difficult or am I not cut out ...https://teamtreehouse.com/.../is-learning-javascript-supposed-to-be...In cacheVergelijkbaarVertaal deze pagina", + "snippet": "3 dec. 2015 - I haven't been able to complete any of Dave McFarland's \"programming challenges\" like building quizzes etc. I have to just watch his solution ...", + "visible_link": "https://teamtreehouse.com/.../is-learning-javascript-supposed-to-be...", + "date": "3 dec. 2015 - ", + "rank": 9 + } + ] + } + } +} \ No newline at end of file diff --git a/examples/test_cluster.js b/examples/test_cluster.js index 5967094..c2860c1 100644 --- a/examples/test_cluster.js +++ b/examples/test_cluster.js @@ -54,6 +54,7 @@ function read_items_from_file(fname) { const cluster = await Cluster.launch({ monitor: true, + timeout: 12 * 60 * 60 * 1000, // 12 hours in ms concurrency: Cluster.CONCURRENCY_BROWSER, maxConcurrency: perBrowserOptions.length, puppeteerOptions: { diff --git a/headless-test-result.png b/headless-test-result.png deleted file mode 100644 index 04b1256..0000000 Binary files a/headless-test-result.png and /dev/null differ diff --git a/index.js b/index.js index 8190b19..0ccdd05 100644 --- a/index.js +++ b/index.js @@ -1,15 +1,16 @@ +const { Cluster } = require('./src/puppeteer-cluster/dist/index.js'); const handler = require('./src/node_scraper.js'); var fs = require('fs'); var os = require("os"); -exports.scrape = async function(config, callback) { +exports.scrape = async function(user_config, callback) { // options for scraping - event = { + let config = { // the user agent to scrape with user_agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36', // if random_user_agent is set to True, a random user agent is chosen - random_user_agent: true, + random_user_agent: false, // whether to select manual settings in visible mode set_manual_settings: false, // log ip address data @@ -18,7 +19,7 @@ exports.scrape = async function(config, callback) { log_http_headers: false, // how long to sleep between requests. a random sleep interval within the range [a,b] // is drawn before every request. empty string for no sleeping. - sleep_range: '[1,1]', + sleep_range: '', // which search engine to scrape search_engine: 'google', compress: false, // compress @@ -48,22 +49,27 @@ exports.scrape = async function(config, callback) { // this is a quick test and should be used for debugging test_evasion: false, // settings for puppeteer-cluster - monitor: false, + puppeteer_cluster_config: { + timeout: 30 * 60 * 1000, // max timeout set to 30 minutes + monitor: false, + concurrency: Cluster.CONCURRENCY_BROWSER, + maxConcurrency: 2, + } }; // overwrite default config - for (var key in config) { - event[key] = config[key]; + for (var key in user_config) { + config[key] = user_config[key]; } - if (fs.existsSync(event.keyword_file)) { - event.keywords = read_keywords_from_file(event.keyword_file); + if (fs.existsSync(config.keyword_file)) { + config.keywords = read_keywords_from_file(config.keyword_file); } - if (fs.existsSync(event.proxy_file)) { - event.proxies = read_keywords_from_file(event.proxy_file); - if (event.verbose) { - console.log(`${event.proxies.length} proxies loaded.`); + if (fs.existsSync(config.proxy_file)) { + config.proxies = read_keywords_from_file(config.proxy_file); + if (config.verbose) { + console.log(`${config.proxies.length} proxies loaded.`); } } @@ -78,7 +84,7 @@ exports.scrape = async function(config, callback) { } } - await handler.handler(event, undefined, callback ); + await handler.handler(config, undefined, callback ); }; function read_keywords_from_file(fname) { diff --git a/package.json b/package.json index 1980429..3f97e86 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "se-scraper", - "version": "1.2.0", - "description": "A simple library using puppeteer to scrape several search engines such as Google, Duckduckgo and Bing.", + "version": "1.2.1", + "description": "A simple module using puppeteer to scrape several search engines such as Google, Duckduckgo and Bing.", "homepage": "https://scrapeulous.com/", "main": "index.js", "scripts": { diff --git a/run.js b/run.js index 5e16a2c..bb66ed8 100644 --- a/run.js +++ b/run.js @@ -17,15 +17,15 @@ let config = { // this output is informational verbose: true, // an array of keywords to scrape - keywords: ['news', 'abc', 'good', 'bad', 'better', 'one more', 'time', 'we are going'], + keywords: ['scrapeulous.com', 'scraping search engines', 'scraping service scrapeulous', 'learn js'], // alternatively you can specify a keyword_file. this overwrites the keywords array keyword_file: '', // the number of pages to scrape for each keyword - num_pages: 1, + num_pages: 2, // whether to start the browser in headless mode - headless: false, + headless: true, // path to output file, data will be stored in JSON - output_file: 'data.json', + output_file: 'examples/results/advanced.json', // whether to prevent images, css, fonts from being loaded // will speed up scraping a great deal block_assets: true, @@ -42,14 +42,20 @@ let config = { // a file with one proxy per line. Example: // socks5://78.94.172.42:1080 // http://118.174.233.10:48400 - proxy_file: '/home/nikolai/.proxies', + proxy_file: '', // check if headless chrome escapes common detection techniques // this is a quick test and should be used for debugging test_evasion: false, // log ip address data - log_ip_address: true, + log_ip_address: false, // log http headers log_http_headers: false, + puppeteer_cluster_config: { + timeout: 10 * 60 * 1000, // max timeout set to 10 minutes + monitor: false, + concurrency: 1, // one scraper per tab + maxConcurrency: 2, // scrape with 2 tabs + } }; function callback(err, response) { diff --git a/src/modules/bing.js b/src/modules/bing.js index 6a5f6bd..0f6b1e4 100644 --- a/src/modules/bing.js +++ b/src/modules/bing.js @@ -75,11 +75,11 @@ class BingScraper extends Scraper { async wait_for_results() { await this.page.waitForSelector('#b_content', { timeout: 5000 }); - await this.sleep(500); + await this.sleep(750); } async detected() { - // TODO: I was actually never detected by bing. those are good guys. + // TODO: I was actually never detected by bing. those are good boys. } } diff --git a/src/modules/se_scraper.js b/src/modules/se_scraper.js index a0b9daa..3f49b1f 100644 --- a/src/modules/se_scraper.js +++ b/src/modules/se_scraper.js @@ -21,9 +21,10 @@ module.exports = class Scraper { this.config = config; this.context = context; + this.proxy = config.proxy; this.keywords = config.keywords; - this.STANDARD_TIMEOUT = 8000; + this.STANDARD_TIMEOUT = 10000; // longer timeout when using proxies this.PROXY_TIMEOUT = 15000; this.SOLVE_CAPTCHA_TIME = 45000; @@ -37,7 +38,6 @@ module.exports = class Scraper { } async run({page, data}) { - this.page = page; let do_continue = await this.load_search_engine(); @@ -93,23 +93,23 @@ module.exports = class Scraper { } if (this.config.log_ip_address === true) { - this.metadata.ipinfo = await meta.get_ip_data(this.page); - console.log(this.metadata.ipinfo); + let ipinfo = await meta.get_ip_data(this.page); + this.metadata.ipinfo = ipinfo; + console.log(ipinfo); } // check that our proxy is working by confirming // that ipinfo.io sees the proxy IP address - if (this.config.proxy && this.config.log_ip_address === true) { - console.log(`${this.metadata.ipinfo} vs ${this.config.proxy}`); + if (this.proxy && this.config.log_ip_address === true) { + console.log(`${this.metadata.ipinfo.ip} vs ${this.proxy}`); try { // if the ip returned by ipinfo is not a substring of our proxystring, get the heck outta here - if (!this.config.proxy.includes(this.metadata.ipinfo.ip)) { + if (!this.proxy.includes(this.metadata.ipinfo.ip)) { console.error('Proxy not working properly.'); return false; } } catch (exception) { - } } @@ -221,7 +221,7 @@ module.exports = class Scraper { async random_sleep() { const [min, max] = this.config.sleep_range; let rand = Math.floor(Math.random() * (max - min + 1) + min); //Generate Random number - if (this.config.debug === true) { + if (this.config.verbose === true) { console.log(`Sleeping for ${rand}s`); } await this.sleep(rand * 1000); diff --git a/src/node_scraper.js b/src/node_scraper.js index 0cb5494..e583d78 100644 --- a/src/node_scraper.js +++ b/src/node_scraper.js @@ -63,6 +63,8 @@ module.exports.handler = async function handler (event, context, callback) { console.log(config); } + console.log(`[se-scraper] started at [${(new Date()).toUTCString()}] and scrapes ${config.search_engine} with ${config.keywords.length} keywords on ${config.num_pages} pages each.`); + var ADDITIONAL_CHROME_FLAGS = [ '--disable-infobars', '--window-position=0,0', @@ -108,100 +110,126 @@ module.exports.handler = async function handler (event, context, callback) { ignoreHTTPSErrors: true, }; - if (config.debug === true) { - console.log("Chrome Args: ", launch_args); - } + var results = {}; + var num_requests = 0; + var metadata = {}; if (pluggable.start_browser) { launch_args.config = config; - browser = await pluggable.start_browser(launch_args); + let browser = await pluggable.start_browser(launch_args); + const page = await await browser.newPage(); + let obj = getScraper(config.search_engine, { + config: config, + context: context, + pluggable: pluggable, + }); + results = obj.run(page); + num_requests = obj.num_requests; + + if (pluggable.close_browser) { + await pluggable.close_browser(); + } else { + await browser.close(); + } } else { - var numClusters = config.proxies.length + 1; + // if no custom start_browser functionality was given + // use puppeteer-cluster for scraping - // the first browser config with home IP - let perBrowserOptions = [launch_args, ]; + var numClusters = config.puppeteer_cluster_config.maxConcurrency; + var perBrowserOptions = []; - for (var proxy of config.proxies) { - perBrowserOptions.push({ - headless: config.headless, - ignoreHTTPSErrors: true, - args: ADDITIONAL_CHROME_FLAGS.concat(`--proxy-server=${proxy}`) - }) + // if we have at least one proxy, always use CONCURRENCY_BROWSER + // and set maxConcurrency to config.proxies.length + 1 + // else use whatever configuration was passed + if (config.proxies.length > 0) { + config.puppeteer_cluster_config.concurrency = Cluster.CONCURRENCY_BROWSER; + config.puppeteer_cluster_config.maxConcurrency = config.proxies.length + 1; + numClusters = config.proxies.length + 1; + + // the first browser config with home IP + perBrowserOptions = [launch_args, ]; + + for (var proxy of config.proxies) { + perBrowserOptions.push({ + headless: config.headless, + ignoreHTTPSErrors: true, + args: ADDITIONAL_CHROME_FLAGS.concat(`--proxy-server=${proxy}`) + }) + } } var cluster = await Cluster.launch({ - monitor: config.monitor, - timeout: 30 * 60 * 1000, // max timeout set to 30 minutes - concurrency: Cluster.CONCURRENCY_BROWSER, - maxConcurrency: numClusters, + monitor: config.puppeteer_cluster_config.monitor, + timeout: config.puppeteer_cluster_config.timeout, // max timeout set to 30 minutes + concurrency: config.puppeteer_cluster_config.concurrency, + maxConcurrency: config.puppeteer_cluster_config.maxConcurrency, puppeteerOptions: launch_args, - perBrowserOptions: perBrowserOptions + perBrowserOptions: perBrowserOptions, }); cluster.on('taskerror', (err, data) => { console.log(`Error while scraping ${data}: ${err.message}`); console.log(err) }); - } - let metadata = {}; - - // Each browser will get N/(K+1) keywords and will issue N/(K+1) * M total requests to the search engine. - // https://github.com/GoogleChrome/puppeteer/issues/678 - // The question is: Is it possible to set proxies per Page? Per Browser? - // as far as I can see, puppeteer cluster uses the same puppeteerOptions - // for every browser instance. We will use our custom puppeteer-cluster version. - // https://www.npmjs.com/package/proxy-chain - // this answer looks nice: https://github.com/GoogleChrome/puppeteer/issues/678#issuecomment-389096077 - let chunks = []; - for (var n = 0; n < numClusters; n++) { - chunks.push([]); - } - for (var k = 0; k < config.keywords.length; k++) { - chunks[k%numClusters].push(config.keywords[k]); - } - //console.log(`Generated ${chunks.length} chunks...`); - - let execPromises = []; - let scraperInstances = []; - for (var c = 0; c < chunks.length; c++) { - config.keywords = chunks[c]; - if (c>0) { - config.proxy = config.proxies[c]; + // Each browser will get N/(K+1) keywords and will issue N/(K+1) * M total requests to the search engine. + // https://github.com/GoogleChrome/puppeteer/issues/678 + // The question is: Is it possible to set proxies per Page? Per Browser? + // as far as I can see, puppeteer cluster uses the same puppeteerOptions + // for every browser instance. We will use our custom puppeteer-cluster version. + // https://www.npmjs.com/package/proxy-chain + // this answer looks nice: https://github.com/GoogleChrome/puppeteer/issues/678#issuecomment-389096077 + let chunks = []; + for (var n = 0; n < numClusters; n++) { + chunks.push([]); + } + for (var k = 0; k < config.keywords.length; k++) { + chunks[k%numClusters].push(config.keywords[k]); } - obj = getScraper(config.search_engine, { - config: config, - context: context, - pluggable: pluggable, - }); - var boundMethod = obj.run.bind(obj); - execPromises.push(cluster.execute({}, boundMethod)); - scraperInstances.push(obj); - } - let results = await Promise.all(execPromises); - results = results[0]; // TODO: this is strange. fix that shit boy + let execPromises = []; + let scraperInstances = []; + for (var c = 0; c < chunks.length; c++) { + config.keywords = chunks[c]; + // the first scraping config uses the home IP + if (c > 0) { + config.proxy = config.proxies[c-1]; + } + var obj = getScraper(config.search_engine, { + config: config, + context: context, + pluggable: pluggable, + }); + + var boundMethod = obj.run.bind(obj); + execPromises.push(cluster.execute({}, boundMethod)); + scraperInstances.push(obj); + } + + let resolved = await Promise.all(execPromises); + + for (var group of resolved) { + for (var key in group) { + results[key] = group[key]; + } + } - if (pluggable.close_browser) { - await pluggable.close_browser(); - } else { await cluster.idle(); await cluster.close(); - } - // count total requests among all scraper instances - let num_requests = 0; - for (var o of scraperInstances) { - num_requests += o.num_requests; + // count total requests among all scraper instances + for (var o of scraperInstances) { + num_requests += o.num_requests; + } } let timeDelta = Date.now() - startTime; let ms_per_request = timeDelta/num_requests; if (config.verbose === true) { - console.log(`${numClusters} Scraper Workers took ${timeDelta}ms to perform ${num_requests} requests.`); + console.log(`se-scraper took ${timeDelta}ms to perform ${num_requests} requests.`); console.log(`On average ms/request: ${ms_per_request}ms/request`); - console.dir(results, {depth: null, colors: true}); + //console.dir(results, {depth: null, colors: true}); } if (config.compress === true) { @@ -232,7 +260,7 @@ module.exports.handler = async function handler (event, context, callback) { } if (config.output_file) { - write_results(config.output_file, JSON.stringify(results)); + write_results(config.output_file, JSON.stringify(results, null, 4)); } let response = { diff --git a/test/test_duckduckgo.js b/test/test_duckduckgo.js index dbe5e25..d81e135 100644 --- a/test/test_duckduckgo.js +++ b/test/test_duckduckgo.js @@ -17,7 +17,7 @@ async function normal_search_test() { keywords: normal_search_keywords, keyword_file: '', num_pages: 2, - headless: false, + headless: true, output_file: '', block_assets: true, user_agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36',