{"id":15065336,"url":"https://github.com/adammoses-github/npmjs-googlenews-rss-scraper","last_synced_at":"2025-04-10T17:15:14.835Z","repository":{"id":57252441,"uuid":"84836871","full_name":"AdamMoses-GitHub/NPMJS-googlenews-rss-scraper","owner":"AdamMoses-GitHub","description":"This package scrapes a Google News RSS feed for data, returning news stories based on a specified topic or query.","archived":false,"fork":false,"pushed_at":"2017-03-24T16:49:46.000Z","size":25,"stargazers_count":9,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-24T15:02:53.051Z","etag":null,"topics":["google","googlenews","news","npmjs","rss"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/googlenews-rss-scraper","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AdamMoses-GitHub.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-03-13T14:35:44.000Z","updated_at":"2024-12-11T17:55:06.000Z","dependencies_parsed_at":"2022-08-31T22:20:47.427Z","dependency_job_id":null,"html_url":"https://github.com/AdamMoses-GitHub/NPMJS-googlenews-rss-scraper","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamMoses-GitHub%2FNPMJS-googlenews-rss-scraper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamMoses-GitHub%2FNPMJS-googlenews-rss-scraper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamMoses-GitHub%2FNPMJS-googlenews-rss-scraper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamMoses-GitHub%2FNPMJS-googlenews-rss-scraper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AdamMoses-GitHub","download_url":"https://codeload.github.com/AdamMoses-GitHub/NPMJS-googlenews-rss-scraper/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248261916,"owners_count":21074225,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["google","googlenews","news","npmjs","rss"],"created_at":"2024-09-25T00:36:59.049Z","updated_at":"2025-04-10T17:15:14.803Z","avatar_url":"https://github.com/AdamMoses-GitHub.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## About\r\n\r\nThis package scrapes a Google News RSS feed for data.\r\n\r\nThe information returned includes news stories based on a specified topic or query.\r\n\r\nTopics available are headlines (the default), US National news, world news, entertainment, business, sports, sci/tech, and technology. \r\n\r\nQueries can be anything in the style of a comma-seperated list string, i.e. 'poker' or 'space,spaceships,stars,astronomy'. \r\n\r\nFor each news story some information will be returned:\r\n* Title\r\n* Source; i.e. 'Washington Times' or 'New York Times'\r\n* Category\r\n* Publishing Date\r\n* URL; both the full and cleaned URLs\r\n* Description; both the full and cleaned descriptions\r\n\r\n## Installation\r\n\r\n```\r\nnpm install googlenews-rss-scraper\r\n```\r\n\r\n## Usage\r\n\r\nThere is only one method to this package: ```getGoogleNewsRSSScraperData(params, callback)```\r\n\r\nThis method requries a params object, which has two fields: newsType and newsTypeTerms. These parameters are specified in more detail in the parameters section.\r\n\r\nThis method requires the use of a callback, which can be specified or anonymous. The callback has one parameters in the form of ```function(data)```. This data object is described in more detail in the return\r\n\r\nIf there was an error, like failed HTML request or bad parsing, **error** will be true and **data** will be **null**. Otherwise, **error** will be false and **data** will be a javascript object. \r\n\r\n## Paramters Format\r\n\r\nThe method ```getGoogleNewsRSSScraperData(params, callback)``` requires use of a parameters variable. \r\n\r\nThis variable is a JSON object containing two members: **newsType** and **newsTypeTerms**.\r\n\r\n**newsType** specifies the type of news to gather, which can either be a pre-defined topic that Google already organizes news by, or it can be a specific query that you request. To get news based on a topic **newsType** should be set to 'TOPIC' and to get news based on a query **newsType** should be set to 'QUERY'.\r\n\r\n**newsTypeTerms** specifies the complimentary topic type or query search terms following the selection set in **newsType**. Examples values for a **newsTypeTerms** for a topic are 'HEADLINES' or 'SPORTS'.  Example values for a **newsTypeTerms** for a query are 'nintendo,mario,gaming' or 'spiders,moths,insects'.\r\n\r\n### Specifying A Topic Type\r\n\r\nThe list below specifies the currently available topic types Google News has available. \r\n\r\nWhen setting the **newsTypeTerms** for a topic the value must be an exact match for a value below, otherwise an error may be returned.\r\n\r\nNOTE: This list is subject to change at anytime. \r\n\r\nNOTE: These Google News topic types were developed/tested in the United States, so use in other countries may vary, especially in the case of the 'NATIONAL' news topic type. \r\n\r\n* HEADLINES\r\n* NATIONAL\r\n* WORLD\r\n* ENTERTAINMENT\r\n* BUSINESS\r\n* SPORTS\r\n* SCI/TECH\r\n* TECHNOLOGY\r\n\r\n### Specifying A Query\r\n\r\nQueries are specified as a single string containing comma-seperated values. The news returned will be based on Google News searches of those values, and are considered to be working on under an OR operation instead of an AND. Individual values can contain spaces but should not contain any other special characters; only letters, numbers, and spaces should be used between comma-seperated values.\r\n\r\nIn the event of specifying a query that is very niche or not currently news-worthy, it is possible to gather no news.\r\n\r\n### Parameter Examples\r\n\r\n```javascript\r\n{  newsType: 'TOPIC', newsTypeTerms: 'SPORTS' }\r\n\r\n{  newsType: 'TOPIC', newsTypeTerms: 'NATIONAL' }\r\n\r\n{  newsType: 'TOPIC', newsTypeTerms: 'SCI/TECH' }\r\n\r\n{  newsType: 'QUERY', newsTypeTerms: 'LIONS,TIGERS,CHEETAHS' }\r\n\r\n{  newsType: 'QUERY', newsTypeTerms: 'MIAMI DOLPHINS' }\r\n\r\n{  newsType: 'QUERY', newsTypeTerms: 'PLANETS,MOONS,STARS' }\r\n```\r\n\r\nNOTE: In this example all parameters are specified in upper-case but in fact these values are case insensitive.\r\n\r\n### Empty / Default Parameter\r\n\r\nSpecifying an empty set of parameters, i.e. ```{ }```, will use the default call which is ```{  newsType: 'TOPIC', newsTypeTerms: 'HEADLINES' }```.\r\n\r\n## Return Data Format\r\n\r\nThe method ```getGoogleNewsRSSScraperData(params, callback)``` uses a callback function in the form of ```function(data)```. This function can be specified or anonymous.\r\n\r\nThis section will describe the format of the returning JSON data object. This object has the following members.\r\n\r\n* **error** - boolean, true if an error occured otherwise false\r\n* **errorMessage** - string, if error is true than explains the error otherwise is null\r\n* **type** - string, mirrors the input paramater of **newsType**, either 'TOPIC' or 'QUERY'\r\n** **terms** - string, mirros the input parameter of **newsTypeTerms**, either provided topic type or query values\r\n** **url** - string, the generated Google News RSS URL that was used to fetch the data\r\n** **newsArray** - array, each element is a different news story fetched from the Google News RSS\r\n\r\nNOTE: In the event of an error some or all of these values may be set to null.\r\n\r\n### News Array Elements\r\n\r\nThe **newsArray** member contained at the highest level of the returning JSON data object contains the indiviudal news stories fetched from the Google News RSS. This value can be null, likely if an error occured, or even empty if no stories were able to be found for a given query.\r\n\r\nThe elements of the news array have the following memebers.\r\n\r\n* **title** - string, the title of the news story\r\n* **source** - string, the source of the news story, i.e. 'New York Times' or 'New York Post' or 'ABC News', etc.\r\n* **category** - string, mirrors the topic type in the case of news gathered by topic, is null when a query was used\r\n* **pubDate** - string, UTC datetime value for when the story was published\r\n* **fullURL** - string, the complete URL as listed in the RSS feed\r\n* **cleanURL** - string, just the direct link to the new story with the Google News parts stripped out\r\n* **fullDescription** - string, the complete description of the news story as listed in the RSS feed, likely containing many HTML tags\r\n* **cleanDescription** - string, shorter and HTML tag-less of the full description\r\n\r\n## Usage Example\r\n\r\n```javascript\r\n// Usage example of googlenews-rss-scraper package\r\n// See https://www.npmjs.com/package/googlenews-rss-scraper\r\n\r\nvar iGoogleNewsRSSScraper = require('googlenews-rss-scraper');\r\n\r\nconsole.log('Usage example of the googlenews-rss-scraper package.')\r\n\r\niGoogleNewsRSSScraper.getGoogleNewsRSSScraperData( { }, function(data) {\r\n        if (!data.error) {\r\n            console.log(JSON.stringify(data, null, 2));      \r\n        }\r\n        else {\r\n            console.log('Some error occured.');\r\n        }\r\n    });\r\n```    \r\n\r\n## Return Data Example\r\n\r\n```javascript\r\n{\r\n  \"error\": false,\r\n  \"errorMessage\": null,\r\n  \"type\": \"TOPIC\",\r\n  \"terms\": \"HEADLINES\",\r\n  \"url\": \"https://news.google.com/news?cf=all\u0026hl=en\u0026pz=1\u0026ned=us\u0026topic=h\u0026output=rss\",\r\n  \"newsArray\": [\r\n    {\r\n      \"title\": \"The Daily 202: Trump's health care ultimatum is straight out of 'The Art of the Deal.' It just might work.\",\r\n      \"source\": \"Washington Post\",\r\n      \"category\": \"Top Stories\",\r\n      \"pubDate\": \"Fri, 24 Mar 2017 14:10:25 GMT\",\r\n      \"fullURL\": \"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFnnExsVOvmXVvoVA-WaXejQpIxrA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434739124\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.washingtonpost.com/news/powerpost/paloma/daily-202/2017/03/24/daily-202-trump-s-health-care-ultimatum-is-straight-out-of-the-art-of-the-deal-it-just-might-work/58d458c9e9b69b72b255102d/\",\r\n      \"cleanURL\": \"https://www.washingtonpost.com/news/powerpost/paloma/daily-202/2017/03/24/daily-202-trump-s-health-care-ultimatum-is-straight-out-of-the-art-of-the-deal-it-just-might-work/58d458c9e9b69b72b255102d/\",\r\n      \"fullDescription\": \"\u003ctable border=\\\"0\\\" cellpadding=\\\"2\\\" cellspacing=\\\"7\\\" style=\\\"vertical-align:top;\\\"\u003e\u003ctr\u003e\u003ctd width=\\\"80\\\" align=\\\"center\\\" valign=\\\"top\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFnnExsVOvmXVvoVA-WaXejQpIxrA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434739124\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.washingtonpost.com/news/powerpost/paloma/daily-202/2017/03/24/daily-202-trump-s-health-care-ultimatum-is-straight-out-of-the-art-of-the-deal-it-just-might-work/58d458c9e9b69b72b255102d/\\\"\u003e\u003cimg src=\\\"//t3.gstatic.com/images?q=tbn:ANd9GcQnsx6-Jk65q2xRw3bMUAk_YMHOv72jNVJTXsK7mskvK4sYQZoMatVkvYIe-qzB9Rzpuad82KLq\\\" alt=\\\"\\\" border=\\\"1\\\" width=\\\"80\\\" height=\\\"80\\\"\u003e\u003cbr\u003e\u003cfont size=\\\"-2\\\"\u003eWashington Post\u003c/font\u003e\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\u003ctd valign=\\\"top\\\" class=\\\"j\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003cbr\u003e\u003cdiv style=\\\"padding-top:0.8em;\\\"\u003e\u003cimg alt=\\\"\\\" height=\\\"1\\\" width=\\\"1\\\"\u003e\u003c/div\u003e\u003cdiv class=\\\"lh\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFnnExsVOvmXVvoVA-WaXejQpIxrA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434739124\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.washingtonpost.com/news/powerpost/paloma/daily-202/2017/03/24/daily-202-trump-s-health-care-ultimatum-is-straight-out-of-the-art-of-the-deal-it-just-might-work/58d458c9e9b69b72b255102d/\\\"\u003e\u003cb\u003eThe Daily 202: Trump\u0026#39;s health care ultimatum is straight out of \u0026#39;The Art of the Deal.\u0026#39; It just might work.\u003c/b\u003e\u003c/a\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003cb\u003e\u003cfont color=\\\"#6f6f6f\\\"\u003eWashington Post\u003c/font\u003e\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003eWith Breanne Deppisch. THE BIG IDEA: If you read Donald Trump\u0026#39;s “The Art of the Deal,” substituting “conservatives\u0026quot; for \u0026quot;contractors,\u0026quot; the president\u0026#39;s ultimatum to House Republicans on health care is not at all surprising. “You have to be very rough \u003cb\u003e...\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGLb1WxaEwiQemZll33ug8A6roWvg\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434739124\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.politico.com/story/2017/03/obamacare-repeal-votes-congress-236459\\\"\u003eForeboding signs for Obamacare repeal as Friday vote looms\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003ePolitico\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHeF8ChHvlbTqx4skXH8UN4HWsxPg\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434739124\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.nytimes.com/2017/03/24/us/politics/health-care-affordable-care-act.html\\\"\u003eObamacare Repeal Rolls Toward a Vote: \u0026#39;It\u0026#39;s Time to Act\u0026#39;\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eNew York Times\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEa9Pi455lUV2gZDhLZ-ORehGvs3w\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434739124\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://thehill.com/homenews/house/325608-house-votes-to-begin-debate-on-obamacare-repeal-bill\\\"\u003eHouse votes to begin debate on healthcare bill; six Republicans defect\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eThe Hill\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\" class=\\\"p\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGYpJtQX4J5ZLGdVd5cMG9bYSDCYw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434739124\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.latimes.com/politics/washington/la-na-essential-washington-updates-watch-live-house-votes-on-legislation-1490369414-htmlstory.html\\\"\u003e\u003cnobr\u003eLos Angeles Times\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEdccdqlQnyynkTkAU-zq_2kNigvw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434739124\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.reuters.com/article/us-usa-obamacare-idUSKBN16V149\\\"\u003e\u003cnobr\u003eReuters\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFsQQplX0JEXnLLdQzMLtGQJeCaVQ\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434739124\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.bbc.com/news/world-us-canada-39383950\\\"\u003e\u003cnobr\u003eBBC News\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGfyuUn0CJWMfOowBYUfFxMpiJpMA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434739124\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.bostonglobe.com/news/politics/2017/03/24/house-sets-risky-health-care-vote-after-trump-demands/SRnMcfSBlrR8Ge4mrQ5ASN/story.html\\\"\u003e\u003cnobr\u003eThe Boston Globe\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont class=\\\"p\\\" size=\\\"-1\\\"\u003e\u003ca class=\\\"p\\\" href=\\\"http://news.google.com/news/more?ncl=dPWRnxCUev0nAdMNM7rozAUZWmKkM\u0026amp;authuser=0\u0026amp;ned=us\u0026amp;topic=h\\\"\u003e\u003cnobr\u003e\u003cb\u003eall 3,801 news articles\u0026nbsp;\u0026raquo;\u003c/b\u003e\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003c/div\u003e\u003c/font\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\",\r\n      \"cleanDescription\": \"With Breanne Deppisch. THE BIG IDEA: If you read Donald Trump\u0026#39;s “The Art of the Deal,” substituting “conservatives\u0026quot; for \u0026quot;contractors,\u0026quot; the president\u0026#39;s ultimatum to House Republicans on health care is not at all surprising. “You have to be very rough ...\"\r\n    },\r\n    {\r\n      \"title\": \"Toll of London Attack Is Global for an Assailant Born in Britain\",\r\n      \"source\": \"New York Times\",\r\n      \"category\": \"Top Stories\",\r\n      \"pubDate\": \"Fri, 24 Mar 2017 11:41:24 GMT\",\r\n      \"fullURL\": \"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGQNr2zBFTygddkHbe4yref5kAz6w\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433107670\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.nytimes.com/2017/03/23/world/europe/london-attack-uk.html\",\r\n      \"cleanURL\": \"https://www.nytimes.com/2017/03/23/world/europe/london-attack-uk.html\",\r\n      \"fullDescription\": \"\u003ctable border=\\\"0\\\" cellpadding=\\\"2\\\" cellspacing=\\\"7\\\" style=\\\"vertical-align:top;\\\"\u003e\u003ctr\u003e\u003ctd width=\\\"80\\\" align=\\\"center\\\" valign=\\\"top\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGQNr2zBFTygddkHbe4yref5kAz6w\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433107670\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.nytimes.com/2017/03/23/world/europe/london-attack-uk.html\\\"\u003e\u003cimg src=\\\"//t0.gstatic.com/images?q=tbn:ANd9GcQ1-QAICTOKfmdmkZxOZcIxrkS9jTMv5X-K5yfMqP1qMmTpRR1x55xL5oYPHiTSMv7-rmIfT57U\\\" alt=\\\"\\\" border=\\\"1\\\" width=\\\"80\\\" height=\\\"80\\\"\u003e\u003cbr\u003e\u003cfont size=\\\"-2\\\"\u003eNew York Times\u003c/font\u003e\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\u003ctd valign=\\\"top\\\" class=\\\"j\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003cbr\u003e\u003cdiv style=\\\"padding-top:0.8em;\\\"\u003e\u003cimg alt=\\\"\\\" height=\\\"1\\\" width=\\\"1\\\"\u003e\u003c/div\u003e\u003cdiv class=\\\"lh\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGQNr2zBFTygddkHbe4yref5kAz6w\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433107670\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.nytimes.com/2017/03/23/world/europe/london-attack-uk.html\\\"\u003e\u003cb\u003eToll of London Attack Is Global for an Assailant Born in Britain\u003c/b\u003e\u003c/a\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003cb\u003e\u003cfont color=\\\"#6f6f6f\\\"\u003eNew York Times\u003c/font\u003e\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003eA vigil was held on Thursday in Trafalgar Square in London for the victims of Wednesday\u0026#39;s attack. Credit Andrew Testa for The New York Times. LONDON — The roster of the dead and wounded spanned the globe: a veteran Scotland Yard constable,\u0026nbsp;...\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHL2_mtJfP_xJxPR9_vIoB3URe-Ow\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433107670\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.bbc.com/news/uk-39363933\\\"\u003eLondon attack: The victims\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eBBC News\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGRqw0yw3Q1VJeE5uJGE18kgeNu_w\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433107670\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.washingtonpost.com/world/british-police-make-2-new-arrests-in-london-attack/2017/03/24/71427754-100a-11e7-aa57-2ca1b05c41b8_story.html\\\"\u003eBritish police make \u0026#39;significant\u0026#39; arrests in widening probes after London rampage\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eWashington Post\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEPxWdRBXD6AA91cmVK573W5gfwiA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433107670\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.cnn.com/2017/03/24/europe/london-attack/\\\"\u003eLondon attack inquiry focuses on radicalization of perpetrator\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eCNN\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\" class=\\\"p\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNENk8w-VmMl1aKYgvP4Evk2jFdFFA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433107670\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.reuters.com/article/us-britain-security-attacker-idUSKBN16U26E\\\"\u003e\u003cnobr\u003eReuters\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFpPuHf7BNRk58OzP4ki8nhbjTTlA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433107670\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.foxnews.com/world/2017/03/24/london-killers-final-hours.html\\\"\u003e\u003cnobr\u003eFox News\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNF3J556JKKtCq9by_Z6NUbeUJkqZw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433107670\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.newsweek.com/london-attack-ira-terror-threat-severe-bomb-terrorism-573629\\\"\u003e\u003cnobr\u003eNewsweek\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFtn7FXuPLIlzZC-IwmpHcA5T9RuA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433107670\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.nydailynews.com/news/world/2-arrests-london-attack-suspect-birth-revealed-article-1.3007477\\\"\u003e\u003cnobr\u003eNew York Daily News\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont class=\\\"p\\\" size=\\\"-1\\\"\u003e\u003ca class=\\\"p\\\" href=\\\"http://news.google.com/news/more?ncl=doRcOihYXXIbljMKmMqu8qcWeSTIM\u0026amp;authuser=0\u0026amp;ned=us\u0026amp;topic=h\\\"\u003e\u003cnobr\u003e\u003cb\u003eall 6,677 news articles\u0026nbsp;\u0026raquo;\u003c/b\u003e\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003c/div\u003e\u003c/font\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\",\r\n      \"cleanDescription\": \"A vigil was held on Thursday in Trafalgar Square in London for the victims of Wednesday\u0026#39;s attack. Credit Andrew Testa for The New York Times. LONDON — The roster of the dead and wounded spanned the globe: a veteran Scotland Yard constable,\u0026nbsp;...\"\r\n    },\r\n    {\r\n      \"title\": \"Trump administration grants approval for Keystone XL pipeline\",\r\n      \"source\": \"Washington Post\",\r\n      \"category\": \"Top Stories\",\r\n      \"pubDate\": \"Fri, 24 Mar 2017 15:17:25 GMT\",\r\n      \"fullURL\": \"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGnCoQKZuPIFJIg64_ZF9suVaDXqA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779432958564\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.washingtonpost.com/news/energy-environment/wp/2017/03/24/trump-administration-grants-approval-for-keystone-xl-pipeline/\",\r\n      \"cleanURL\": \"https://www.washingtonpost.com/news/energy-environment/wp/2017/03/24/trump-administration-grants-approval-for-keystone-xl-pipeline/\",\r\n      \"fullDescription\": \"\u003ctable border=\\\"0\\\" cellpadding=\\\"2\\\" cellspacing=\\\"7\\\" style=\\\"vertical-align:top;\\\"\u003e\u003ctr\u003e\u003ctd width=\\\"80\\\" align=\\\"center\\\" valign=\\\"top\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGnCoQKZuPIFJIg64_ZF9suVaDXqA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779432958564\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.washingtonpost.com/news/energy-environment/wp/2017/03/24/trump-administration-grants-approval-for-keystone-xl-pipeline/\\\"\u003e\u003cimg src=\\\"//t0.gstatic.com/images?q=tbn:ANd9GcQBVOOrH3iecRk93KzHik7JrNV5ui9ixqtgVwrwRF6IuYoG_1Xdj10vI3EgG_ukInWYlQ0inJg_\\\" alt=\\\"\\\" border=\\\"1\\\" width=\\\"80\\\" height=\\\"80\\\"\u003e\u003cbr\u003e\u003cfont size=\\\"-2\\\"\u003eWashington Post\u003c/font\u003e\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\u003ctd valign=\\\"top\\\" class=\\\"j\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003cbr\u003e\u003cdiv style=\\\"padding-top:0.8em;\\\"\u003e\u003cimg alt=\\\"\\\" height=\\\"1\\\" width=\\\"1\\\"\u003e\u003c/div\u003e\u003cdiv class=\\\"lh\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGnCoQKZuPIFJIg64_ZF9suVaDXqA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779432958564\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.washingtonpost.com/news/energy-environment/wp/2017/03/24/trump-administration-grants-approval-for-keystone-xl-pipeline/\\\"\u003e\u003cb\u003eTrump administration grants approval for Keystone XL pipeline\u003c/b\u003e\u003c/a\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003cb\u003e\u003cfont color=\\\"#6f6f6f\\\"\u003eWashington Post\u003c/font\u003e\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003ePresident Trump announced Friday morning the granting of a permit for construction of the controversial Keystone XL pipeline, calling it “the first of many infrastructure projects” that he would approve in order to put more Americans to work. Trump \u003cb\u003e...\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHXOZzZ3QemBqNvfy9OhazFsXEiFA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779432958564\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.nytimes.com/2017/03/24/business/energy-environment/keystone-oil-pipeline.html\\\"\u003eUS, in Reversal, Issues Permit for Keystone Oil Pipeline\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eNew York Times\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHHhXUaDR6i8NSI92XM5wJFrnZ9ig\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779432958564\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.reuters.com/article/us-usa-pipeline-keystone-transcanada-idUSKBN16V1CN\\\"\u003eTrump greenlights Keystone XL pipeline, but other obstacles loom\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eReuters\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHpZYVOls8uLSJ7ZU0DrDiZwNqqaA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779432958564\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.nbcnews.com/politics/donald-trump/trump-announce-approval-keystone-xl-pipeline-official-n738031\\\"\u003eKeystone XL Pipeline Approved by President Trump in Reversal From Obama\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eNBCNews.com\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\" class=\\\"p\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGZFDxVJmBgAA_av7J-oUjJownkkw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779432958564\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://thehill.com/policy/energy-environment/325587-trump-approves-keystone-pipeline\\\"\u003e\u003cnobr\u003eThe Hill\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNF4GsKn-vUF1lINoe0Oki056HQNJw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779432958564\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.marketwatch.com/story/explaining-why-some-say-keystone-will-create-thousands-of-jobs-and-others-say-35-2017-03-24\\\"\u003e\u003cnobr\u003eMarketWatch\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHFBWP5A52bKf4JIFUcNOo3U5h0pQ\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779432958564\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.usatoday.com/story/news/politics/2017/03/24/trump-grants-keystone-permit-declares-great-day-american-jobs/99567608/\\\"\u003e\u003cnobr\u003eUSA TODAY\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEk9m7OjRFi_XRV76XLdhEeknNTkA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779432958564\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.houstonchronicle.com/news/texas/article/AP-sources-US-to-approve-Keystone-XL-pipeline-11024798.php\\\"\u003e\u003cnobr\u003eHouston Chronicle\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont class=\\\"p\\\" size=\\\"-1\\\"\u003e\u003ca class=\\\"p\\\" href=\\\"http://news.google.com/news/more?ncl=dnNLHpU3uaJV-jMDb9G6eJcakLDyM\u0026amp;authuser=0\u0026amp;ned=us\u0026amp;topic=h\\\"\u003e\u003cnobr\u003e\u003cb\u003eall 382 news articles\u0026nbsp;\u0026raquo;\u003c/b\u003e\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003c/div\u003e\u003c/font\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\",\r\n      \"cleanDescription\": \"President Trump announced Friday morning the granting of a permit for construction of the controversial Keystone XL pipeline, calling it “the first of many infrastructure projects” that he would approve in order to put more Americans to work. Trump ...\"\r\n    },\r\n    {\r\n      \"title\": \"The Latest: Ryan heads to White House to discuss health care\",\r\n      \"source\": \"SFGate\",\r\n      \"category\": \"Top Stories\",\r\n      \"pubDate\": \"Fri, 24 Mar 2017 15:34:24 GMT\",\r\n      \"fullURL\": \"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHaKUqvtkuVTDSk0nr1ICf7mAS9Yg\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779430416040\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.sfgate.com/news/medical/article/The-Latest-Mulvaney-warns-against-vote-collapsing-11025037.php\",\r\n      \"cleanURL\": \"http://www.sfgate.com/news/medical/article/The-Latest-Mulvaney-warns-against-vote-collapsing-11025037.php\",\r\n      \"fullDescription\": \"\u003ctable border=\\\"0\\\" cellpadding=\\\"2\\\" cellspacing=\\\"7\\\" style=\\\"vertical-align:top;\\\"\u003e\u003ctr\u003e\u003ctd width=\\\"80\\\" align=\\\"center\\\" valign=\\\"top\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGT66aPk9WRpy9dTVQDVsg_RHTDpQ\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779430416040\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://motto.time.com/4708987/mike-pence-working-women-award/\\\"\u003e\u003cimg src=\\\"//t1.gstatic.com/images?q=tbn:ANd9GcS_ADLCyFA_4Gx7XEqN1q2mcUnK37abg-_hGrxh7KWE6YOf68TanF2iHrLXxHbR2zstndYgPZpc\\\" alt=\\\"\\\" border=\\\"1\\\" width=\\\"80\\\" height=\\\"80\\\"\u003e\u003cbr\u003e\u003cfont size=\\\"-2\\\"\u003eTIME\u003c/font\u003e\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\u003ctd valign=\\\"top\\\" class=\\\"j\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003cbr\u003e\u003cdiv style=\\\"padding-top:0.8em;\\\"\u003e\u003cimg alt=\\\"\\\" height=\\\"1\\\" width=\\\"1\\\"\u003e\u003c/div\u003e\u003cdiv class=\\\"lh\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHaKUqvtkuVTDSk0nr1ICf7mAS9Yg\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779430416040\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.sfgate.com/news/medical/article/The-Latest-Mulvaney-warns-against-vote-collapsing-11025037.php\\\"\u003e\u003cb\u003eThe Latest: Ryan heads to White House to discuss health care\u003c/b\u003e\u003c/a\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003cb\u003e\u003cfont color=\\\"#6f6f6f\\\"\u003eSFGate\u003c/font\u003e\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003eWASHINGTON (AP) — The Latest on an effort in Congress to pass a health care bill (all times local):. 12:30 p.m.. House Speaker Paul Ryan is at the White House to brief President Donald Trump on the state of play on the health care bill. The visit \u003cb\u003e...\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHVo5KLy1LzUSll8qcFyx67cj2xcw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779430416040\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.politico.com/story/2017/03/mike-pence-delays-trip-obamacare-vote-236467\\\"\u003ePence postpones travel to fight for Obamacare repeal in Washington\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003ePolitico\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHU-snpBFM1_2yOpGYOoNzpccbgKA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779430416040\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://kdvr.com/2017/03/24/is-there-something-wrong-with-this-white-house-photo-of-health-care-talks/\\\"\u003eObjections raised over White House photo of health care talks\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eFOX31 Denver\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEsO20Z6f_TinNFfQdXXFYiJl3dmg\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779430416040\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.reuters.com/article/us-usa-obamacare-pence-idUSKBN16V22U\\\"\u003ePence cancels trip to work on healthcare as House vote looms\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eReuters\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\" class=\\\"p\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGW9wN0iP-KZ4wCaOpZAuXqZedIhQ\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779430416040\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.commercialappeal.com/story/news/local/2017/03/24/vice-president-mike-pence-cancels-memphis-trip-ncca-tournament/99578160/\\\"\u003e\u003cnobr\u003eThe Commercial Appeal\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFwPD-E4qT5isFnZPMy6uU8f-vdww\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779430416040\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://fox59.com/2017/03/23/update-vice-president-mike-pence-wont-attend-butler-game-after-all-due-to-health-care-bill-vote/\\\"\u003e\u003cnobr\u003eFox 59\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFgTzPCpCdKhy_EN7q8f0KL9SQBXg\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779430416040\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.thv11.com/news/local/vice-president-mike-pence-cancels-his-trip-to-little-rock/425258372\\\"\u003e\u003cnobr\u003eTHV11.com\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGvduIwgWDaPfqS8lK-OTfA5X-Lwg\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779430416040\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.washingtonpost.com/news/the-fix/wp/2017/03/22/vice-president-pence-is-receiving-a-working-for-women-award-heres-a-dive-into-his-record-on-women/\\\"\u003e\u003cnobr\u003eWashington Post\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont class=\\\"p\\\" size=\\\"-1\\\"\u003e\u003ca class=\\\"p\\\" href=\\\"http://news.google.com/news/more?ncl=d0T7hFNVFy6EuTMxCe800yTfohKbM\u0026amp;authuser=0\u0026amp;ned=us\u0026amp;topic=h\\\"\u003e\u003cnobr\u003e\u003cb\u003eall 115 news articles\u0026nbsp;\u0026raquo;\u003c/b\u003e\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003c/div\u003e\u003c/font\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\",\r\n      \"cleanDescription\": \"WASHINGTON (AP) — The Latest on an effort in Congress to pass a health care bill (all times local):. 12:30 p.m.. House Speaker Paul Ryan is at the White House to brief President Donald Trump on the state of play on the health care bill. The visit ...\"\r\n    },\r\n    {\r\n      \"title\": \"Maryland school no sanctuary for alleged rape victim\",\r\n      \"source\": \"Bucks County Courier Times\",\r\n      \"category\": \"Top Stories\",\r\n      \"pubDate\": \"Fri, 24 Mar 2017 04:15:00 GMT\",\r\n      \"fullURL\": \"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHZMe_cCzS5mF3Q5YVLvJPslLXoDw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779425560459\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.buckscountycouriertimes.com/opinion/op-ed/maryland-school-no-sanctuary-for-alleged-rape-victim/article_6d435622-5027-5f3d-9c9b-da9d279552d9.html\",\r\n      \"cleanURL\": \"http://www.buckscountycouriertimes.com/opinion/op-ed/maryland-school-no-sanctuary-for-alleged-rape-victim/article_6d435622-5027-5f3d-9c9b-da9d279552d9.html\",\r\n      \"fullDescription\": \"\u003ctable border=\\\"0\\\" cellpadding=\\\"2\\\" cellspacing=\\\"7\\\" style=\\\"vertical-align:top;\\\"\u003e\u003ctr\u003e\u003ctd width=\\\"80\\\" align=\\\"center\\\" valign=\\\"top\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003c/font\u003e\u003c/td\u003e\u003ctd valign=\\\"top\\\" class=\\\"j\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003cbr\u003e\u003cdiv style=\\\"padding-top:0.8em;\\\"\u003e\u003cimg alt=\\\"\\\" height=\\\"1\\\" width=\\\"1\\\"\u003e\u003c/div\u003e\u003cdiv class=\\\"lh\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHZMe_cCzS5mF3Q5YVLvJPslLXoDw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779425560459\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.buckscountycouriertimes.com/opinion/op-ed/maryland-school-no-sanctuary-for-alleged-rape-victim/article_6d435622-5027-5f3d-9c9b-da9d279552d9.html\\\"\u003e\u003cb\u003eMaryland school no sanctuary for alleged rape victim\u003c/b\u003e\u003c/a\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003cb\u003e\u003cfont color=\\\"#6f6f6f\\\"\u003eBucks County Courier Times\u003c/font\u003e\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003eA rough translation of Maryland\u0026#39;s state motto is \u0026quot;Strong Deeds, Gentle Words.\u0026quot; In the case of a 14-year-old girl who was recently raped and sodomized in a restroom at Rockville High School by two males students, both immigrants, one facing a \u003cb\u003e...\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\" class=\\\"p\\\"\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont class=\\\"p\\\" size=\\\"-1\\\"\u003e\u003ca class=\\\"p\\\" href=\\\"http://news.google.com/news/more?ncl=dz1vd5X9ASuUnmM\u0026amp;authuser=0\u0026amp;ned=us\u0026amp;topic=h\\\"\u003e\u003cnobr\u003e\u003cb\u003eand more\u0026nbsp;\u0026raquo;\u003c/b\u003e\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003c/div\u003e\u003c/font\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\",\r\n      \"cleanDescription\": \"A rough translation of Maryland\u0026#39;s state motto is \u0026quot;Strong Deeds, Gentle Words.\u0026quot; In the case of a 14-year-old girl who was recently raped and sodomized in a restroom at Rockville High School by two males students, both immigrants, one facing a ...\"\r\n    },\r\n    {\r\n      \"title\": \"Black lawmakers ask FBI to help find missing DC kids\",\r\n      \"source\": \"Washington Examiner\",\r\n      \"category\": \"Top Stories\",\r\n      \"pubDate\": \"Fri, 24 Mar 2017 16:23:00 GMT\",\r\n      \"fullURL\": \"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNF8EflzoMNmmfanNGcxvuTXG54EyQ\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433522306\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.washingtonexaminer.com/black-lawmakers-ask-fbi-to-help-find-missing-dc-kids/article/2618363\",\r\n      \"cleanURL\": \"http://www.washingtonexaminer.com/black-lawmakers-ask-fbi-to-help-find-missing-dc-kids/article/2618363\",\r\n      \"fullDescription\": \"\u003ctable border=\\\"0\\\" cellpadding=\\\"2\\\" cellspacing=\\\"7\\\" style=\\\"vertical-align:top;\\\"\u003e\u003ctr\u003e\u003ctd width=\\\"80\\\" align=\\\"center\\\" valign=\\\"top\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNF8EflzoMNmmfanNGcxvuTXG54EyQ\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433522306\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.washingtonexaminer.com/black-lawmakers-ask-fbi-to-help-find-missing-dc-kids/article/2618363\\\"\u003e\u003cimg src=\\\"//t2.gstatic.com/images?q=tbn:ANd9GcQljcHAzxYFxOsPIdGTDrDYougIelrWAVqmBrwyzgRj7nUvg_OU8GCuSWChiZVF0uveBGxE_zq8\\\" alt=\\\"\\\" border=\\\"1\\\" width=\\\"80\\\" height=\\\"80\\\"\u003e\u003cbr\u003e\u003cfont size=\\\"-2\\\"\u003eWashington Examiner\u003c/font\u003e\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\u003ctd valign=\\\"top\\\" class=\\\"j\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003cbr\u003e\u003cdiv style=\\\"padding-top:0.8em;\\\"\u003e\u003cimg alt=\\\"\\\" height=\\\"1\\\" width=\\\"1\\\"\u003e\u003c/div\u003e\u003cdiv class=\\\"lh\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNF8EflzoMNmmfanNGcxvuTXG54EyQ\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779433522306\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.washingtonexaminer.com/black-lawmakers-ask-fbi-to-help-find-missing-dc-kids/article/2618363\\\"\u003e\u003cb\u003eBlack lawmakers ask FBI to help find missing DC kids\u003c/b\u003e\u003c/a\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003cb\u003e\u003cfont color=\\\"#6f6f6f\\\"\u003eWashington Examiner\u003c/font\u003e\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003eThe letter, dated Tuesday, was sent by Congressional Black Caucus chairman Cedric Richmond, D-La., and Del. Eleanor Holmes Norton, who represents the District in Congress. According to the letter, obtained by the Associated Press, D.C., logged 501\u0026nbsp;...\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\" class=\\\"p\\\"\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont class=\\\"p\\\" size=\\\"-1\\\"\u003e\u003ca class=\\\"p\\\" href=\\\"http://news.google.com/news/more?ncl=dc7otQF_nSQ1IkM\u0026amp;authuser=0\u0026amp;ned=us\u0026amp;topic=h\\\"\u003e\u003cnobr\u003e\u003cb\u003eand more\u0026nbsp;\u0026raquo;\u003c/b\u003e\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003c/div\u003e\u003c/font\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\",\r\n      \"cleanDescription\": \"The letter, dated Tuesday, was sent by Congressional Black Caucus chairman Cedric Richmond, D-La., and Del. Eleanor Holmes Norton, who represents the District in Congress. According to the letter, obtained by the Associated Press, D.C., logged 501\u0026nbsp;...\"\r\n    },\r\n    {\r\n      \"title\": \"Schumer's filibuster promise means GOP won, Gorsuch headed to Supreme Court\",\r\n      \"source\": \"Fox News\",\r\n      \"category\": \"Top Stories\",\r\n      \"pubDate\": \"Fri, 24 Mar 2017 13:45:01 GMT\",\r\n      \"fullURL\": \"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFFGxidVTXxs1fb30QvH9fGQm2_Ug\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779422409774\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.foxnews.com/opinion/2017/03/24/schumers-filibuster-promise-means-gop-won-gorsuch-headed-to-supreme-court.html\",\r\n      \"cleanURL\": \"http://www.foxnews.com/opinion/2017/03/24/schumers-filibuster-promise-means-gop-won-gorsuch-headed-to-supreme-court.html\",\r\n      \"fullDescription\": \"\u003ctable border=\\\"0\\\" cellpadding=\\\"2\\\" cellspacing=\\\"7\\\" style=\\\"vertical-align:top;\\\"\u003e\u003ctr\u003e\u003ctd width=\\\"80\\\" align=\\\"center\\\" valign=\\\"top\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFFGxidVTXxs1fb30QvH9fGQm2_Ug\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779422409774\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.foxnews.com/opinion/2017/03/24/schumers-filibuster-promise-means-gop-won-gorsuch-headed-to-supreme-court.html\\\"\u003e\u003cimg src=\\\"//t1.gstatic.com/images?q=tbn:ANd9GcTlesGG6SvDuaPvCgXV_pNBUwPXBwxzW8-FNaORZTQbsCUQmvXvpRFCVSJ2OCa948GRwn7dQCtA\\\" alt=\\\"\\\" border=\\\"1\\\" width=\\\"80\\\" height=\\\"80\\\"\u003e\u003cbr\u003e\u003cfont size=\\\"-2\\\"\u003eFox News\u003c/font\u003e\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\u003ctd valign=\\\"top\\\" class=\\\"j\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003cbr\u003e\u003cdiv style=\\\"padding-top:0.8em;\\\"\u003e\u003cimg alt=\\\"\\\" height=\\\"1\\\" width=\\\"1\\\"\u003e\u003c/div\u003e\u003cdiv class=\\\"lh\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFFGxidVTXxs1fb30QvH9fGQm2_Ug\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779422409774\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.foxnews.com/opinion/2017/03/24/schumers-filibuster-promise-means-gop-won-gorsuch-headed-to-supreme-court.html\\\"\u003e\u003cb\u003eSchumer\u0026#39;s filibuster promise means GOP won, Gorsuch headed to Supreme Court\u003c/b\u003e\u003c/a\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003cb\u003e\u003cfont color=\\\"#6f6f6f\\\"\u003eFox News\u003c/font\u003e\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003eContrary to media reports Thursday, Senate Minority Leader Chuck Schumer\u0026#39;s promise to invoke a filibuster signals the success, not the failure, of Judge Neil Gorsuch\u0026#39;s Supreme Court nomination. If Democratic Senators had made any progress in attacking\u0026nbsp;...\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\" class=\\\"p\\\"\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont class=\\\"p\\\" size=\\\"-1\\\"\u003e\u003ca class=\\\"p\\\" href=\\\"http://news.google.com/news/more?ncl=dHFAJdtZz7IwvWM\u0026amp;authuser=0\u0026amp;ned=us\u0026amp;topic=h\\\"\u003e\u003cnobr\u003e\u003cb\u003eand more\u0026nbsp;\u0026raquo;\u003c/b\u003e\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003c/div\u003e\u003c/font\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\",\r\n      \"cleanDescription\": \"Contrary to media reports Thursday, Senate Minority Leader Chuck Schumer\u0026#39;s promise to invoke a filibuster signals the success, not the failure, of Judge Neil Gorsuch\u0026#39;s Supreme Court nomination. If Democratic Senators had made any progress in attacking\u0026nbsp;...\"\r\n    },\r\n    {\r\n      \"title\": \"Putin meets French far-right candidate Marine Le Pen at Kremlin\",\r\n      \"source\": \"CNN\",\r\n      \"category\": \"Top Stories\",\r\n      \"pubDate\": \"Fri, 24 Mar 2017 14:39:51 GMT\",\r\n      \"fullURL\": \"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEIt-SGZjguRKNUR-10qTWMHDz-Uw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434333018\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.cnn.com/2017/03/24/europe/putin-le-pen-kremlin/\",\r\n      \"cleanURL\": \"http://www.cnn.com/2017/03/24/europe/putin-le-pen-kremlin/\",\r\n      \"fullDescription\": \"\u003ctable border=\\\"0\\\" cellpadding=\\\"2\\\" cellspacing=\\\"7\\\" style=\\\"vertical-align:top;\\\"\u003e\u003ctr\u003e\u003ctd width=\\\"80\\\" align=\\\"center\\\" valign=\\\"top\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEIt-SGZjguRKNUR-10qTWMHDz-Uw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434333018\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.cnn.com/2017/03/24/europe/putin-le-pen-kremlin/\\\"\u003e\u003cimg src=\\\"//t3.gstatic.com/images?q=tbn:ANd9GcRMkUjpkxof7rAywTWjkmeNSJV9C2J9DvigovWgimogPk9AnJwHf9iWAStKQqf93ofEwYXTwSML\\\" alt=\\\"\\\" border=\\\"1\\\" width=\\\"80\\\" height=\\\"80\\\"\u003e\u003cbr\u003e\u003cfont size=\\\"-2\\\"\u003eCNN\u003c/font\u003e\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\u003ctd valign=\\\"top\\\" class=\\\"j\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003cbr\u003e\u003cdiv style=\\\"padding-top:0.8em;\\\"\u003e\u003cimg alt=\\\"\\\" height=\\\"1\\\" width=\\\"1\\\"\u003e\u003c/div\u003e\u003cdiv class=\\\"lh\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEIt-SGZjguRKNUR-10qTWMHDz-Uw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434333018\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.cnn.com/2017/03/24/europe/putin-le-pen-kremlin/\\\"\u003e\u003cb\u003ePutin meets French far-right candidate Marine Le Pen at Kremlin\u003c/b\u003e\u003c/a\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003cb\u003e\u003cfont color=\\\"#6f6f6f\\\"\u003eCNN\u003c/font\u003e\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e(CNN) Russian President Vladimir Putin stressed the \u0026quot;great importance\u0026quot; of ties between his country and France as he met French far-right presidential candidate Marine Le Pen at the Kremlin on Friday, Russian state-run news agency Tass reported.\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHmSNfNa02LyPr8tTXxsNN8CbEmxw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434333018\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.huffingtonpost.com/entry/france-marine-le-pen-election_us_58d13dafe4b0be71dcf81a4d\\\"\u003eAhead Of Its Election, France Is Deeply Fragmented, Its People Often Angry and Scared\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eHuffington Post\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNE4g254dqU93N12VHD2TAoexyIBIA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434333018\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.foxnews.com/world/2017/03/24/putin-le-pen-hold-surprise-meeting-in-moscow.html\\\"\u003ePutin, Le Pen hold surprise meeting in Moscow\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eFox News\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHW9izZGqbqhozIuG2aMJv0AzAEGQ\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434333018\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.buzzfeed.com/anupkaphle/this-is-what-happened-when-marine-le-pen-went-to-moscow\\\"\u003eThis Is What Happened When Marine Le Pen Went To Moscow\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eBuzzFeed News\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\" class=\\\"p\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNF32orT936pFvrsgXHpD_9CuyVq9Q\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434333018\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://foreignpolicy.com/2017/03/24/marine-le-pen-france-presidential-race-meeting-putin-also-chad-africa/\\\"\u003e\u003cnobr\u003eForeign Policy (blog)\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNG0LLqsxCQkOQLH8H0yu2p8dHcciw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434333018\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.cnbc.com/2017/03/24/marine-le-pen-can-win-france-says-goldman-sachs.html\\\"\u003e\u003cnobr\u003eCNBC\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGb_TmqiqKa13wKtPf9CaOk3RCAuQ\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434333018\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.usnews.com/news/world/articles/2017-03-24/aide-to-frances-le-pen-says-putin-wished-her-good-luck-with-election\\\"\u003e\u003cnobr\u003eU.S. News \u0026 World Report\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEedmEyQR7KhrQksDarLiF7Rfhtcg\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434333018\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.ncronline.org/news/politics/religion-emerges-secular-french-politics-presidential-campaign-heats\\\"\u003e\u003cnobr\u003eNational Catholic Reporter\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont class=\\\"p\\\" size=\\\"-1\\\"\u003e\u003ca class=\\\"p\\\" href=\\\"http://news.google.com/news/more?ncl=d7pJXBf2CNZ5xCMAUwSkD28iPSmFM\u0026amp;authuser=0\u0026amp;ned=us\u0026amp;topic=h\\\"\u003e\u003cnobr\u003e\u003cb\u003eall 162 news articles\u0026nbsp;\u0026raquo;\u003c/b\u003e\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003c/div\u003e\u003c/font\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\",\r\n      \"cleanDescription\": \"(CNN) Russian President Vladimir Putin stressed the \u0026quot;great importance\u0026quot; of ties between his country and France as he met French far-right presidential candidate Marine Le Pen at the Kremlin on Friday, Russian state-run news agency Tass reported.\"\r\n    },\r\n    {\r\n      \"title\": \"Hosni Mubarak Is Freed, to Dismay of Many in Egypt\",\r\n      \"source\": \"New York Times\",\r\n      \"category\": \"Top Stories\",\r\n      \"pubDate\": \"Fri, 24 Mar 2017 14:53:46 GMT\",\r\n      \"fullURL\": \"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEMXt3c2R2_5EbOfFor83Xq4p0wbw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779435346544\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.nytimes.com/2017/03/24/world/africa/hosni-mubarak-egypt.html\",\r\n      \"cleanURL\": \"https://www.nytimes.com/2017/03/24/world/africa/hosni-mubarak-egypt.html\",\r\n      \"fullDescription\": \"\u003ctable border=\\\"0\\\" cellpadding=\\\"2\\\" cellspacing=\\\"7\\\" style=\\\"vertical-align:top;\\\"\u003e\u003ctr\u003e\u003ctd width=\\\"80\\\" align=\\\"center\\\" valign=\\\"top\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEMXt3c2R2_5EbOfFor83Xq4p0wbw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779435346544\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.nytimes.com/2017/03/24/world/africa/hosni-mubarak-egypt.html\\\"\u003e\u003cimg src=\\\"//t3.gstatic.com/images?q=tbn:ANd9GcRD95WQWC5OS1blCtWydcrJw-nFNBqGHF1iawrqmXCCUcEPP9pTVuw2H2ffBcJu2i6HsqQoRO5x\\\" alt=\\\"\\\" border=\\\"1\\\" width=\\\"80\\\" height=\\\"80\\\"\u003e\u003cbr\u003e\u003cfont size=\\\"-2\\\"\u003eNew York Times\u003c/font\u003e\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\u003ctd valign=\\\"top\\\" class=\\\"j\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003cbr\u003e\u003cdiv style=\\\"padding-top:0.8em;\\\"\u003e\u003cimg alt=\\\"\\\" height=\\\"1\\\" width=\\\"1\\\"\u003e\u003c/div\u003e\u003cdiv class=\\\"lh\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEMXt3c2R2_5EbOfFor83Xq4p0wbw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779435346544\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.nytimes.com/2017/03/24/world/africa/hosni-mubarak-egypt.html\\\"\u003e\u003cb\u003eHosni Mubarak Is Freed, to Dismay of Many in Egypt\u003c/b\u003e\u003c/a\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003cb\u003e\u003cfont color=\\\"#6f6f6f\\\"\u003eNew York Times\u003c/font\u003e\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003eFormer President Hosni Mubarak of Egypt was returned on March 2 to Maadi Military Hospital in southern Cairo after a court hearing. He was freed from the hospital detention on Friday. Credit Mohamed Hossam/European Pressphoto Agency. CAIRO — Six\u0026nbsp;...\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEuKThJjrc6gzi8IL_WuvLi9nhO7w\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779435346544\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.foxnews.com/world/2017/03/24/key-events-in-life-ousted-egyptian-president.html\\\"\u003eKey events in the life of the ousted Egyptian president\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eFox News\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNG5jU_kxv1OlEUFaeuWrrfmclJB7Q\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779435346544\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.washingtonpost.com/world/middle_east/egypts-mubarak-returns-home-after-years-long-detention/2017/03/24/5435dc50-1082-11e7-aa57-2ca1b05c41b8_story.html\\\"\u003eEgypt\u0026#39;s Mubarak free, acquitted after years-long detention\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eWashington Post\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGCqnABq97BNzhj5lN7xIy_4Toolw\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779435346544\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.cnn.com/2017/03/24/middleeast/egypt-mubarak-released/\\\"\u003eEx-Egyptian President Hosni Mubarak freed after 6 years in detention\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eCNN\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\" class=\\\"p\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEt03q0g0EgZ4Uo7xcu6A3Dytnq0w\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779435346544\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.reuters.com/article/us-egypt-mubarak-idUSKBN16V12V\\\"\u003e\u003cnobr\u003eReuters\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGloU7WlN8FYxn7J6aOl2fa_Iy9dA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779435346544\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.cbsnews.com/news/hosni-mubarak-egypt-president-ousted-arab-spring-free-back-home/\\\"\u003e\u003cnobr\u003eCBS News\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFUV3P06vVREjylMGeFoBrJjz1QyQ\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779435346544\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.pri.org/stories/2017-03-24/egypts-mubarak-symbol-dashed-hopes-goes-free\\\"\u003e\u003cnobr\u003ePRI\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNHOlPT3AvXRjgLb6xDGXf0UJzEOUQ\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779435346544\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.npr.org/sections/thetwo-way/2017/03/24/521350857/mubarak-walks-free-in-what-could-be-the-final-twist-for-egypts-former-dictator\\\"\u003e\u003cnobr\u003eNPR\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont class=\\\"p\\\" size=\\\"-1\\\"\u003e\u003ca class=\\\"p\\\" href=\\\"http://news.google.com/news/more?ncl=dJTWWc_8wxIWIcMxi4qt0kgN9-S5M\u0026amp;authuser=0\u0026amp;ned=us\u0026amp;topic=h\\\"\u003e\u003cnobr\u003e\u003cb\u003eall 95 news articles\u0026nbsp;\u0026raquo;\u003c/b\u003e\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003c/div\u003e\u003c/font\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\",\r\n      \"cleanDescription\": \"Former President Hosni Mubarak of Egypt was returned on March 2 to Maadi Military Hospital in southern Cairo after a court hearing. He was freed from the hospital detention on Friday. Credit Mohamed Hossam/European Pressphoto Agency. CAIRO — Six\u0026nbsp;...\"\r\n    },\r\n    {\r\n      \"title\": \"Toronto school board bars US trips amid travel ban uncertainty\",\r\n      \"source\": \"The Hill\",\r\n      \"category\": \"Top Stories\",\r\n      \"pubDate\": \"Fri, 24 Mar 2017 15:47:51 GMT\",\r\n      \"fullURL\": \"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNF1HaKbepCfv6YgHSeosil3MNvO1Q\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434475223\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://thehill.com/policy/international/325589-toronto-school-board-barring-student-staff-trips-to-us-amid-travel-ban\",\r\n      \"cleanURL\": \"http://thehill.com/policy/international/325589-toronto-school-board-barring-student-staff-trips-to-us-amid-travel-ban\",\r\n      \"fullDescription\": \"\u003ctable border=\\\"0\\\" cellpadding=\\\"2\\\" cellspacing=\\\"7\\\" style=\\\"vertical-align:top;\\\"\u003e\u003ctr\u003e\u003ctd width=\\\"80\\\" align=\\\"center\\\" valign=\\\"top\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNF1HaKbepCfv6YgHSeosil3MNvO1Q\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434475223\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://thehill.com/policy/international/325589-toronto-school-board-barring-student-staff-trips-to-us-amid-travel-ban\\\"\u003e\u003cimg src=\\\"//t0.gstatic.com/images?q=tbn:ANd9GcRLk9A6YptOfzn_-dhPQkpy1zWAR8GevzQg_ND8u8CBX6x4cfKPuy9-2La_Q17NYfDILkOrezW9\\\" alt=\\\"\\\" border=\\\"1\\\" width=\\\"80\\\" height=\\\"80\\\"\u003e\u003cbr\u003e\u003cfont size=\\\"-2\\\"\u003eThe Hill\u003c/font\u003e\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\u003ctd valign=\\\"top\\\" class=\\\"j\\\"\u003e\u003cfont style=\\\"font-size:85%;font-family:arial,sans-serif\\\"\u003e\u003cbr\u003e\u003cdiv style=\\\"padding-top:0.8em;\\\"\u003e\u003cimg alt=\\\"\\\" height=\\\"1\\\" width=\\\"1\\\"\u003e\u003c/div\u003e\u003cdiv class=\\\"lh\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNF1HaKbepCfv6YgHSeosil3MNvO1Q\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434475223\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://thehill.com/policy/international/325589-toronto-school-board-barring-student-staff-trips-to-us-amid-travel-ban\\\"\u003e\u003cb\u003eToronto school board bars US trips amid travel ban uncertainty\u003c/b\u003e\u003c/a\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003cb\u003e\u003cfont color=\\\"#6f6f6f\\\"\u003eThe Hill\u003c/font\u003e\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003eToronto schools will no longer allow student or staff trips to the U.S. due to uncertainty over whether everyone will be allowed to enter in the wake of President Trump\u0026#39;s travel ban. In a statement released Thursday, John Mallow, direct of education \u003cb\u003e...\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEH5ljzdZqy0l6aJS971HGYUUp1BA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434475223\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=https://www.washingtonpost.com/news/morning-mix/wp/2017/03/24/worried-about-trumps-travel-ban-canadas-largest-school-district-calls-off-u-s-trips/\\\"\u003eWorried about Trump\u0026#39;s travel ban, Canada\u0026#39;s largest school district calls off US trips\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eWashington Post\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNE_fekiwmNsnq2MYEQDUV5wyAYzuQ\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434475223\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.nbcnews.com/news/world/trump-travel-ban-toronto-school-board-bars-new-trips-u-n738106\\\"\u003eTrump Travel Ban: Toronto School Board Bars New Trips to US\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eNBCNews.com\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFctDy-BzdH-iCH7EyuZ7_P9SKpXg\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434475223\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.huffingtonpost.com/entry/toronto-bans-us-trips_us_58d4b7e0e4b03692bea42f43\\\"\u003eToronto Cancels US Class Trips Due To Trump Travel Ban Concerns\u003c/a\u003e\u003cfont size=\\\"-1\\\" color=\\\"#6f6f6f\\\"\u003e\u003cnobr\u003eHuffington Post\u003c/nobr\u003e\u003c/font\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont size=\\\"-1\\\" class=\\\"p\\\"\u003e\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFE_UkThWzy40q1SAtFJ3cwF-67zA\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434475223\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.cnn.com/2017/03/24/politics/toronto-school-us-travel-ban/\\\"\u003e\u003cnobr\u003eCNN\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNGAvWdj-92Xxlp0b8u5uiC-zqpxmg\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434475223\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.foxnews.com/world/2017/03/24/toronto-school-board-will-no-longer-have-us-trips-due-to-trump-travel-ban-fears.html\\\"\u003e\u003cnobr\u003eFox News\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNEw_yymXcLT0DTbsoK44MMjz-Nv2A\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434475223\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://time.com/4711938/toronto-school-district-donald-trump-travel-ban/\\\"\u003e\u003cnobr\u003eTIME\u003c/nobr\u003e\u003c/a\u003e\u0026nbsp;-\u003ca href=\\\"http://news.google.com/news/url?sa=t\u0026amp;fd=R\u0026amp;ct2=us\u0026amp;usg=AFQjCNFmGWs171PbVXFHKpVZAk8a_xJkUg\u0026amp;clid=c3a7d30bb8a4878e06b80cf16b898331\u0026amp;cid=52779434475223\u0026amp;ei=4kzVWJChD9jE3QHZ_5-ICg\u0026amp;url=http://www.slate.com/blogs/the_slatest/2017/03/23/largest_canadian_school_system_will_end_trips_to_u_s_over_of_travel_ban.html\\\"\u003e\u003cnobr\u003eSlate Magazine (blog)\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003cbr\u003e\u003cfont class=\\\"p\\\" size=\\\"-1\\\"\u003e\u003ca class=\\\"p\\\" href=\\\"http://news.google.com/news/more?ncl=d7lpJB-9ALXll5MfJFxkEbkVKIfxM\u0026amp;authuser=0\u0026amp;ned=us\u0026amp;topic=h\\\"\u003e\u003cnobr\u003e\u003cb\u003eall 50 news articles\u0026nbsp;\u0026raquo;\u003c/b\u003e\u003c/nobr\u003e\u003c/a\u003e\u003c/font\u003e\u003c/div\u003e\u003c/font\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\",\r\n      \"cleanDescription\": \"Toronto schools will no longer allow student or staff trips to the U.S. due to uncertainty over whether everyone will be allowed to enter in the wake of President Trump\u0026#39;s travel ban. In a statement released Thursday, John Mallow, direct of education ...\"\r\n    }\r\n  ]\r\n}\r\n```\r\n\r\n\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadammoses-github%2Fnpmjs-googlenews-rss-scraper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadammoses-github%2Fnpmjs-googlenews-rss-scraper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadammoses-github%2Fnpmjs-googlenews-rss-scraper/lists"}