Day 2 - Getting Data with Python

Something about automation and scripts

Something about exceptions

Let's try a challenge!

Error handling - or having a computer program anticipate and respond to errors created by other functions - is a big part of programming. To give you a little more practice with this, we're going to have you team up with person sitting next to you and try challenge B in the challenges directory.

Introduction to the interwebs

A vast amount of data exists on the web and is now publicly available. In this section, we give an overview of popular ways to retrieve data from the web, and walk through some important concerns and considerations.

The internet follows a client-server architecture, where clients (e.g. you) ask servers to do things.

The most common way that you experience this is through a browser, where you enter a URL and a server sends your computer a page for your browser to render. Most of what you think about as the internet are stored documents (web pages) that are given out to anyone who asks.

You probably also have a program on your computer like Outlook or Thunderbird that sends emails to a server and asks it to forward them along to someone else. You may also have proprietary software that's protected by a license, and needs to connect to a license server to verify that you are an authenticated user.

Ultimately, the internet is just connecting to computers that you don't own and passing data back and forth. Because the data transfer protocol (http) and typical data formats (html) are not native to Python, we're going to leave Python just for a little bit.

Intro to HTTP requests

You can view the request sent by your browser by:

1) Opening a new tab in your browser
2) Enabling developer tools (View -> Developer -> Developer Tools in Chrome and Tools -> Web Developer -> Toggle Tools in Firefox)
3) Loading or reloading a web page (etc. www.google.com)
4) Navigating to the Network tab in the panel that appears at the bottom of the page.

These requests you send follow the HTTP protocol (Hypertext Transfer Protocol), part of which defines the information (along with the format) the server needs to receive to return the right resources. Your HTTP request contains headers, which contains information that the server needs to know in order to return the right information to you.

But we're not here to wander around the web (you probably do this a lot, all on your own). You're here because you want Python to do it for you.

In order to get web pages, we're going to use a python library called requests, which takes a lot of the fuss out of contacting servers.


In [2]:
import requests

r = requests.get("http://en.wikipedia.org/wiki/Main_Page")

This response object contains various information about the request you sent to the server, the resources returned, and information about the response the server returned to you, among other information. These are accessible through the __request__ attribute, the __content__ attribute and the __headers__ attribute respectively, which we'll each examine below.


In [3]:
type(r.request), type(r.content), type(r.headers)


Out[3]:
(requests.models.PreparedRequest,
 bytes,
 requests.structures.CaseInsensitiveDict)

Here, we can see that request is an object with a custom type, content is a str value and headers is an object with "dict" in its name, suggesting we can interact with it like we would with a dictionary.

The content is the actual resource returned to us - let's take a look at the content first before examining the request and response objects more carefully. (We select the first 1000 characters b/c of the display limits of Jupyter/python notebook.)


In [4]:
from pprint import pprint
pprint(r.content[0:1000])


(b'<!DOCTYPE html>\n<html lang="en" dir="ltr" class="client-nojs">\n<head>\n<m'
 b'eta charset="UTF-8" />\n<title>Wikipedia, the free encyclopedia</title>\n<'
 b'script>document.documentElement.className = document.documentElement.classNa'
 b'me.replace( /(^|\\s)client-nojs(\\s|$)/, "$1client-js$2" );</script>\n<scri'
 b'pt>(window.RLQ = window.RLQ || []).push(function () {\nmw.config.set({"wg'
 b'CanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber'
 b'":0,"wgPageName":"Main_Page","wgTitle":"Main Page","wgCurRevisionId":6968469'
 b'20,"wgRevisionId":696846920,"wgArticleId":15580374,"wgIsArticle":true,"wgIsR'
 b'edirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgC'
 b'ategories":[],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageCont'
 b'entModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTa'
 b'ble":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","Febru'
 b'ary","March","April","May","June","July","August","September","October","Nov'
 b'ember","December"],"wgMonthN')

The content returned is written in HTML (HyperText Markup Language), which is the default format in which web pages are returned. The content looks like gibberish at first, with little to no spacing. The reason for this is that some of the formatting rules for the document, like its hierarchical structure, are saved in text along with the text in the document.

note - this is called the Document Object Model (DOM) and is the same way that markdown and LaTeX documents are written

If you save a web page as a ".html" file, and open the file in a text editor like Notepad++ or Sublime Text, this is the same format you'll see. Opening the file in a browser (i.e. by double-clicking it) gives you the Google home page you are familiar with.

You can inspect the information you sent to Wikipedia long with your request


In [5]:
r.request.headers


Out[5]:
{'User-Agent': 'python-requests/2.9.1', 'Accept-Encoding': 'gzip, deflate', 'Connection': 'keep-alive', 'Accept': '*/*', 'Cookie': 'WMF-Last-Access=15-Mar-2016; GeoIP=:::::v6'}

Along with the additional info that Wikipedia sent back:


In [6]:
r.headers


Out[6]:
{'Strict-Transport-Security': 'max-age=31536000; includeSubDomains; preload', 'Cache-Control': 'private, s-maxage=0, max-age=0, must-revalidate', 'X-Content-Type-Options': 'nosniff', 'P3P': 'CP="This is not a P3P policy! See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."', 'Server': 'nginx/1.9.4', 'Last-Modified': 'Tue, 15 Mar 2016 21:50:19 GMT', 'Via': '1.1 varnish, 1.1 varnish, 1.1 varnish, 1.1 varnish', 'Connection': 'keep-alive', 'Content-Length': '17120', 'Content-language': 'en', 'X-Powered-By': 'HHVM/3.12.1', 'X-Analytics': 'page_id=15580374;ns=0;WMF-Last-Access=15-Mar-2016;https=1', 'Content-Type': 'text/html; charset=UTF-8', 'Vary': 'Accept-Encoding,Cookie,Authorization', 'Accept-Ranges': 'bytes', 'X-Cache': 'cp1055 hit(4), cp2004 miss(0), cp4016 miss(0), cp4010 frontend hit(1523)', 'Age': '1497', 'Date': 'Tue, 15 Mar 2016 22:15:27 GMT', 'Content-Encoding': 'gzip', 'Backend-Timing': 'D=73745 t=1458078630374809', 'X-Varnish': '1412546445 1412546130, 2771078338, 3350049300, 1795643099 1790414053', 'X-Client-IP': '2607:f140:400:a007:e8d1:d7cc:4d98:8d23', 'X-UA-Compatible': 'IE=Edge'}

But you will probably not ever need this information.

Most of what you'll be doing is sending what are called GET requests (this is why we typed in requests.get above). This is an HTTP protocol for asking a server to send you some stuff. We asked Wikipedia to GET us their main page. Things like queries (searching Wikipedia) also fall under GET.

From time to time, you may also want to send information to a server (we'll do this later today). These are called POST requests, because you are posting something to the server (and not asking for data back).

note - From the server's perspective, the request it receives from your browser is not so different from the request received from your console (though some servers use a range of methods to determine if the request comes from a "valid" person using a browser, versus an automated program.)

To have a look at the content of the web page, we can ask for the content:


In [7]:
r.content[:1000]


Out[7]:
b'<!DOCTYPE html>\n<html lang="en" dir="ltr" class="client-nojs">\n<head>\n<meta charset="UTF-8" />\n<title>Wikipedia, the free encyclopedia</title>\n<script>document.documentElement.className = document.documentElement.className.replace( /(^|\\s)client-nojs(\\s|$)/, "$1client-js$2" );</script>\n<script>(window.RLQ = window.RLQ || []).push(function () {\nmw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Main_Page","wgTitle":"Main Page","wgCurRevisionId":696846920,"wgRevisionId":696846920,"wgArticleId":15580374,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":[],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthN'

which gives us the response in bytes, or text:


In [8]:
r.text[:1000]


Out[8]:
'<!DOCTYPE html>\n<html lang="en" dir="ltr" class="client-nojs">\n<head>\n<meta charset="UTF-8" />\n<title>Wikipedia, the free encyclopedia</title>\n<script>document.documentElement.className = document.documentElement.className.replace( /(^|\\s)client-nojs(\\s|$)/, "$1client-js$2" );</script>\n<script>(window.RLQ = window.RLQ || []).push(function () {\nmw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Main_Page","wgTitle":"Main Page","wgCurRevisionId":696846920,"wgRevisionId":696846920,"wgArticleId":15580374,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":[],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthN'

Parsing HTML in Python

Trying to parse this str by hand is basically a nightmare. Instead, we'll use a Python library called Beautiful Soup to turn it into something that is still confusing, but less of a nightmare.


In [9]:
from bs4 import BeautifulSoup

page = BeautifulSoup(r.content)
page


/Users/dillon/anaconda/lib/python3.5/site-packages/bs4/__init__.py:166: UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("lxml"). This usually isn't a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.

To get rid of this warning, change this:

 BeautifulSoup([your markup])

to this:

 BeautifulSoup([your markup], "lxml")

  markup_type=markup_type))
Out[9]:
<!DOCTYPE html>
<html class="client-nojs" dir="ltr" lang="en">
<head>
<meta charset="utf-8"/>
<title>Wikipedia, the free encyclopedia</title>
<script>document.documentElement.className = document.documentElement.className.replace( /(^|\s)client-nojs(\s|$)/, "$1client-js$2" );</script>
<script>(window.RLQ = window.RLQ || []).push(function () {
mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Main_Page","wgTitle":"Main Page","wgCurRevisionId":696846920,"wgRevisionId":696846920,"wgArticleId":15580374,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":[],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"Main_Page","wgRelevantArticleId":15580374,"wgIsProbablyEditable":false,"wgRestrictionEdit":["sysop"],"wgRestrictionMove":["sysop"],"wgIsMainPage":true,"wgWikiEditorEnabledModules":{"toolbar":true,"dialogs":true,"preview":false,"publish":false},"wgBetaFeaturesFeatures":[],"wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":true,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","usePageImages":true,"usePageDescriptions":true},"wikilove-recipient":"","wikilove-anon":0,"wgPreferredVariant":"en","wgRelatedArticles":null,"wgRelatedArticlesUseCirrusSearch":true,"wgRelatedArticlesOnlyUseCirrusSearch":false,"wgULSAcceptLanguageList":["en-us"],"wgULSCurrentAutonym":"English","wgFlaggedRevsParams":{"tags":{"status":{"levels":1,"quality":2,"pristine":3}}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","wgNoticeProject":"wikipedia","wgCentralNoticeCategoriesUsingLegacy":["Fundraising","fundraising"],"wgCentralAuthMobileDomain":false,"wgWikibaseItemId":"Q5296","wgVisualEditorToolbarScrollOffset":0}); /* @nomin */mw.loader.implement("user.options",function($,jQuery){mw.user.options.set({"variant":"en"});});mw.loader.implement("user.tokens",function ( $, jQuery ) {
mw.user.tokens.set({"editToken":"+\\","patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"}); /* @nomin */ ;

});mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","ext.centralauth.centralautologin","mmv.head","ext.visualEditor.desktopArticleTarget.init","ext.uls.init","ext.uls.interface","ext.quicksurveys.init","mw.MediaWikiPlayer.loader","mw.PopUpMediaTransform","ext.centralNotice.bannerController","skins.vector.js"]);
} );</script>
<link href="/w/load.php?debug=false&amp;lang=en&amp;modules=ext.gadget.DRN-wizard%2CReferenceTooltips%2Ccharinsert%2Cfeatured-articles-links%2CrefToolbar%2Cswitcher%2Cteahouse%7Cext.tmh.thumbnail.styles%7Cext.uls.nojs%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.raggett%2CsectionAnchor%7Cmediawiki.skinning.interface%7Cskins.vector.styles&amp;only=styles&amp;skin=vector" rel="stylesheet"/>
<meta content="" name="ResourceLoaderDynamicStyles"/>
<link href="/w/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=styles&amp;skin=vector" rel="stylesheet"/>
<script async="" src="/w/load.php?debug=false&amp;lang=en&amp;modules=startup&amp;only=scripts&amp;skin=vector"></script>
<meta content="MediaWiki 1.27.0-wmf.16" name="generator"/>
<meta content="origin-when-cross-origin" name="referrer"/>
<link href="android-app://org.wikipedia/http/en.m.wikipedia.org/wiki/Main_Page" rel="alternate"/>
<link href="/w/api.php?action=featuredfeed&amp;feed=potd&amp;feedformat=atom" rel="alternate" title="Wikipedia picture of the day feed" type="application/atom+xml"/>
<link href="/w/api.php?action=featuredfeed&amp;feed=featured&amp;feedformat=atom" rel="alternate" title="Wikipedia featured articles feed" type="application/atom+xml"/>
<link href="/w/api.php?action=featuredfeed&amp;feed=onthisday&amp;feedformat=atom" rel="alternate" title='Wikipedia "On this day..." feed' type="application/atom+xml"/>
<link href="/static/apple-touch/wikipedia.png" rel="apple-touch-icon"/>
<link href="/static/favicon/wikipedia.ico" rel="shortcut icon"/>
<link href="/w/opensearch_desc.php" rel="search" title="Wikipedia (en)" type="application/opensearchdescription+xml"/>
<link href="//en.wikipedia.org/w/api.php?action=rsd" rel="EditURI" type="application/rsd+xml"/>
<link href="//creativecommons.org/licenses/by-sa/3.0/" rel="copyright"/>
<link href="https://en.wikipedia.org/wiki/Main_Page" rel="canonical"/>
<link href="//meta.wikimedia.org" rel="dns-prefetch"/>
</head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-Main_Page skin-vector action-view">
<div class="noprint" id="mw-page-base"></div>
<div class="noprint" id="mw-head-base"></div>
<div class="mw-body" id="content" role="main">
<a id="top"></a>
<div id="siteNotice"><!-- CentralNotice --></div>
<div class="mw-indicators">
</div>
<h1 class="firstHeading" id="firstHeading" lang="en">Main Page</h1>
<div class="mw-body-content" id="bodyContent">
<div id="siteSub">From Wikipedia, the free encyclopedia</div>
<div id="contentSub"></div>
<div class="mw-jump" id="jump-to-nav">
					Jump to:					<a href="#mw-head">navigation</a>, 					<a href="#p-search">search</a>
</div>
<div class="mw-content-ltr" dir="ltr" id="mw-content-text" lang="en"><table id="mp-topbanner" style="width:100%; background:#f9f9f9; margin:1.2em 0 6px 0; border:1px solid #ddd;">
<tr>
<td style="width:61%; color:#000;">
<table style="width:280px; border:none; background:none;">
<tr>
<td style="width:280px; text-align:center; white-space:nowrap; color:#000;">
<div style="font-size:162%; border:none; margin:0; padding:.1em; color:#000;">Welcome to <a href="/wiki/Wikipedia" title="Wikipedia">Wikipedia</a>,</div>
<div style="top:+0.2em; font-size:95%;">the <a href="/wiki/Free_content" title="Free content">free</a> <a href="/wiki/Encyclopedia" title="Encyclopedia">encyclopedia</a> that <a href="/wiki/Wikipedia:Introduction" title="Wikipedia:Introduction">anyone can edit</a>.</div>
<div id="articlecount" style="font-size:85%;"><a href="/wiki/Special:Statistics" title="Special:Statistics">5,104,889</a> articles in <a href="/wiki/English_language" title="English language">English</a></div>
</td>
</tr>
</table>
</td>
<td style="width:13%; font-size:95%;">
<ul>
<li><a href="/wiki/Portal:Arts" title="Portal:Arts">Arts</a></li>
<li><a href="/wiki/Portal:Biography" title="Portal:Biography">Biography</a></li>
<li><a href="/wiki/Portal:Geography" title="Portal:Geography">Geography</a></li>
</ul>
</td>
<td style="width:13%; font-size:95%;">
<ul>
<li><a href="/wiki/Portal:History" title="Portal:History">History</a></li>
<li><a href="/wiki/Portal:Mathematics" title="Portal:Mathematics">Mathematics</a></li>
<li><a href="/wiki/Portal:Science" title="Portal:Science">Science</a></li>
</ul>
</td>
<td style="width:13%; font-size:95%;">
<ul>
<li><a href="/wiki/Portal:Society" title="Portal:Society">Society</a></li>
<li><a href="/wiki/Portal:Technology" title="Portal:Technology">Technology</a></li>
<li><b><a href="/wiki/Portal:Contents/Portals" title="Portal:Contents/Portals">All portals</a></b></li>
</ul>
</td>
</tr>
</table>
<table id="mp-upper" style="width: 100%; margin:4px 0 0 0; background:none; border-spacing: 0px;">
<tr>
<td class="MainPageBG" style="width:55%; border:1px solid #cef2e0; background:#f5fffa; vertical-align:top; color:#000;">
<table id="mp-left" style="width:100%; vertical-align:top; background:#f5fffa;">
<tr>
<td style="padding:2px;">
<h2 id="mp-tfa-h2" style="margin:3px; background:#cef2e0; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3bfb1; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="From_today.27s_featured_article">From today's featured article</span></h2>
</td>
</tr>
<tr>
<td style="color:#000;">
<div id="mp-tfa" style="padding:2px 5px">
<div id="mp-tfa-img" style="float: left; margin: 0.5em 0.9em 0.4em 0em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 178px;"><a class="image" href="/wiki/File:CASR78atS11_(cropped).jpg" title="SR 78 in Oceanside at the El Camino Real overpass"><img alt="SR 78 in Oceanside at the El Camino Real overpass" data-file-height="1080" data-file-width="1920" height="100" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/25/CASR78atS11_%28cropped%29.jpg/178px-CASR78atS11_%28cropped%29.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/25/CASR78atS11_%28cropped%29.jpg/267px-CASR78atS11_%28cropped%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/25/CASR78atS11_%28cropped%29.jpg/356px-CASR78atS11_%28cropped%29.jpg 2x" width="178"/></a></div>
</div>
<p><b><a href="/wiki/California_State_Route_78" title="California State Route 78">State Route 78</a></b> is a <a href="/wiki/State_highway" title="State highway">state highway</a> in <a href="/wiki/California" title="California">California</a> that runs from <a href="/wiki/Oceanside,_California" title="Oceanside, California">Oceanside</a> east to <a href="/wiki/Blythe,_California" title="Blythe, California">Blythe</a>, a few miles from <a href="/wiki/Arizona" title="Arizona">Arizona</a>. Its western terminus is at <a class="mw-redirect" href="/wiki/Interstate_5_(California)" title="Interstate 5 (California)">Interstate 5</a> in <a href="/wiki/San_Diego_County,_California" title="San Diego County, California">San Diego County</a> and its eastern terminus is at <a class="mw-redirect" href="/wiki/Interstate_10_(California)" title="Interstate 10 (California)">Interstate 10</a> in <a href="/wiki/Riverside_County,_California" title="Riverside County, California">Riverside County</a>. The route is a freeway through the heavily populated cities of northern San Diego County and a two-lane highway running through the <a href="/wiki/Cuyamaca_Mountains" title="Cuyamaca Mountains">Cuyamaca Mountains</a> to <a href="/wiki/Julian,_California" title="Julian, California">Julian</a>. In <a href="/wiki/Imperial_County,_California" title="Imperial County, California">Imperial County</a>, it travels through the desert near the <a href="/wiki/Salton_Sea" title="Salton Sea">Salton Sea</a> and passes through the city of <a href="/wiki/Brawley,_California" title="Brawley, California">Brawley</a> before turning north into an area of sand dunes on the way to its terminus in Blythe. Portions of the route existed as early as 1900, and it was one of the original state highways designated in 1934. The freeway section in the <a class="mw-redirect" href="/wiki/San_Diego_North_County,_California" title="San Diego North County, California">North County</a> of <a href="/wiki/San_Diego" title="San Diego">San Diego</a> that connects Oceanside and <a href="/wiki/Escondido,_California" title="Escondido, California">Escondido</a> was built in the middle of the 20th century in several stages, including a transitory stage known as the Vista Way Freeway, and has been improved several times. An expressway bypass of the city of Brawley was completed in 2012. There are many projects slated to improve the freeway due to increasing congestion. (<a href="/wiki/California_State_Route_78" title="California State Route 78"><b>Full article...</b></a>)</p>
<ul style="list-style:none; margin-left:0; text-align:right;">
<li>Recently featured:
<div class="hlist inline">
<ul>
<li><i><a href="/wiki/Sarcoscypha_coccinea" title="Sarcoscypha coccinea">Sarcoscypha coccinea</a></i></li>
<li><a href="/wiki/Japanese_battleship_Asahi" title="Japanese battleship Asahi">Japanese battleship <i>Asahi</i></a></li>
<li><a href="/wiki/Isabella_Beeton" title="Isabella Beeton">Isabella Beeton</a></li>
</ul>
</div>
</li>
</ul>
<div class="hlist noprint" id="mp-tfa-footer" style="text-align: right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Today%27s_featured_article/March_2016" title="Wikipedia:Today's featured article/March 2016">Archive</a></b></li>
<li><b><a class="extiw" href="https://lists.wikimedia.org/mailman/listinfo/daily-article-l" title="mail:daily-article-l">By email</a></b></li>
<li><b><a href="/wiki/Wikipedia:Featured_articles" title="Wikipedia:Featured articles">More featured articles...</a></b></li>
</ul>
</div>
</div>
</td>
</tr>
<tr>
<td style="padding:2px;">
<h2 id="mp-dyk-h2" style="margin:3px; background:#cef2e0; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3bfb1; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="Did_you_know...">Did you know...</span></h2>
</td>
</tr>
<tr>
<td style="color:#000; padding:2px 5px 5px;">
<div id="mp-dyk">
<div id="mp-dyk-img" style="float:right; margin-left:0.5em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 120px;"><a class="image" href="/wiki/File:Bilikiss_Adebiyi_CEO.jpg" title="Bilikiss Adebiyi"><img alt="Bilikiss Adebiyi" data-file-height="500" data-file-width="447" height="133" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Bilikiss_Adebiyi_CEO.jpg/119px-Bilikiss_Adebiyi_CEO.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Bilikiss_Adebiyi_CEO.jpg/179px-Bilikiss_Adebiyi_CEO.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Bilikiss_Adebiyi_CEO.jpg/238px-Bilikiss_Adebiyi_CEO.jpg 2x" width="119"/></a>
<div class="thumbcaption" style="padding: 0.25em 0; word-wrap: break-word;">Bilikiss Adebiyi</div>
</div>
</div>
<ul>
<li>... that <b><a href="/wiki/Bilikiss_Adebiyi_Abiola" title="Bilikiss Adebiyi Abiola">Bilikiss Adebiyi</a></b> <i>(pictured)</i> planned to collect rubbish in the streets of Nigeria while taking her <a href="/wiki/Master_of_Business_Administration" title="Master of Business Administration">MBA</a> at <a href="/wiki/Massachusetts_Institute_of_Technology" title="Massachusetts Institute of Technology">MIT</a>?</li>
<li>... that the <a href="/wiki/BBC" title="BBC">BBC</a> re-launched its former television channel <a href="/wiki/BBC_Three_(former)" title="BBC Three (former)">BBC Three</a> as an <b><a href="/wiki/BBC_Three_(Internet_television)" title="BBC Three (Internet television)">Internet television service</a></b>?</li>
<li>... that the Sanskrit text <b><a href="/wiki/Manasollasa" title="Manasollasa">Manasollasa</a></b> is a 12th-century encyclopedia covering topics such as garden design, cuisine recipes, veterinary medicine, jewelry, painting, music, and dance?</li>
<li>... that the species name for <i><b><a href="/wiki/Burmaleon" title="Burmaleon">Burmaleon magnificus</a></b></i> was coined for the quality of preservation in the fossils?</li>
<li>... that the documentary film <i><b><a href="/wiki/No_Land%27s_Song" title="No Land's Song">No Land's Song</a></b></i> spotlights women's protests against an Iranian ban on public female solo singing before male audiences?</li>
<li>... that uninjured reporters commandeered a <a href="/wiki/Medical_evacuation" title="Medical evacuation">medical evacuation</a> helicopter during <b><a href="/wiki/Campaign_Z" title="Campaign Z">Campaign Z</a></b>?</li>
<li>... that of an estimated 100,000 <b><a href="/wiki/German_Jewish_military_personnel_of_World_War_I" title="German Jewish military personnel of World War I">German Jews</a></b> who served in the <a href="/wiki/German_Army_(German_Empire)" title="German Army (German Empire)">German Army</a> in <a href="/wiki/World_War_I" title="World War I">World War I</a>, 12,000 were killed in action?</li>
</ul>
<p><b>Correction</b>: we erroneously claimed here that in 1964 <a href="/wiki/Jim_Hazelton" title="Jim Hazelton">Jim Hazelton</a> was the first Australian to fly a single-engine aircraft across the Pacific, but <a href="/wiki/Charles_Kingsford_Smith" title="Charles Kingsford Smith">Charles Kingsford Smith</a> and copilot <a href="/wiki/Gordon_Taylor_(aviator)" title="Gordon Taylor (aviator)">Gordon Taylor</a> were actually the first to do so in 1934 in their <a href="/wiki/Lockheed_Altair" title="Lockheed Altair">Lockheed Altair</a> <i><a href="/wiki/Lady_Southern_Cross" title="Lady Southern Cross">Lady Southern Cross</a></i>.</p>
<div class="hlist noprint" id="mp-dyk-footer" style="text-align:right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Recent_additions" title="Wikipedia:Recent additions">Recently improved articles</a></b></li>
<li><b><a href="/wiki/Wikipedia:Your_first_article" title="Wikipedia:Your first article">Start a new article</a></b></li>
<li><b><a href="/wiki/Template_talk:Did_you_know" title="Template talk:Did you know">Nominate an article</a></b></li>
</ul>
</div>
</div>
</td>
</tr>
</table>
</td>
<td style="border:1px solid transparent;"></td>
<td class="MainPageBG" style="width:45%; border:1px solid #cedff2; background:#f5faff; vertical-align:top;">
<table id="mp-right" style="width:100%; vertical-align:top; background:#f5faff;">
<tr>
<td style="padding:2px;">
<h2 id="mp-itn-h2" style="margin:3px; background:#cedff2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="In_the_news">In the news</span></h2>
</td>
</tr>
<tr>
<td style="color:#000; padding:2px 5px;">
<div id="mp-itn">
<div id="mp-itn-img" style="float:right;margin-left:0.5em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 120px;"><a href="/wiki/File:Total_Solar_Eclipse,_9_March_2016,_from_Balikpapan,_East_Kalimantan,_Indonesia.JPG" title="Total solar eclipse, viewed from Balikpapan"><img alt="Total solar eclipse, viewed from Balikpapan" data-file-height="388" data-file-width="396" height="118" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG/120px-Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG/180px-Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG/240px-Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG 2x" width="120"/></a>
<div class="thumbcaption" style="padding: 0.25em 0; word-wrap: break-word;">Total solar eclipse, viewed from <a href="/wiki/Balikpapan" title="Balikpapan">Balikpapan</a></div>
</div>
</div>
<ul>
<li><b><a href="/wiki/March_2016_Ankara_bombing" title="March 2016 Ankara bombing">An explosion</a></b> in <a href="/wiki/Ankara" title="Ankara">Ankara</a>, Turkey, kills 37 people and injures at least 125 others.</li>
<li>At least 18 people are killed in <b><a href="/wiki/2016_Grand-Bassam_shootings" title="2016 Grand-Bassam shootings">shootings</a></b> at a beach resort in <a href="/wiki/Grand-Bassam" title="Grand-Bassam">Grand-Bassam</a>, Ivory Coast.</li>
<li><a href="/wiki/Google_DeepMind" title="Google DeepMind">Google DeepMind</a>'s <a href="/wiki/AlphaGo" title="AlphaGo">AlphaGo</a> computer program <b><a href="/wiki/AlphaGo_versus_Lee_Sedol" title="AlphaGo versus Lee Sedol">wins a series</a></b> against <a href="/wiki/Lee_Sedol" title="Lee Sedol">Lee Sedol</a>, one of the world's best <a href="/wiki/Go_(game)" title="Go (game)">Go</a> players.</li>
<li>A total <a href="/wiki/Solar_eclipse" title="Solar eclipse">solar eclipse</a> <b><a href="/wiki/Solar_eclipse_of_March_9,_2016" title="Solar eclipse of March 9, 2016">occurs</a></b>, with totality <i>(pictured)</i> visible from Indonesia and the North Pacific.</li>
<li>In the <b><a href="/wiki/Slovak_parliamentary_election,_2016" title="Slovak parliamentary election, 2016">Slovak parliamentary election</a></b>, <a href="/wiki/Direction_%E2%80%93_Social_Democracy" title="Direction – Social Democracy">Direction – Social Democracy</a> remains the largest political party but loses its majority in the <a href="/wiki/National_Council_(Slovakia)" title="National Council (Slovakia)">National Council</a>.</li>
<li>The <a href="/wiki/Human_Rights_Protection_Party" title="Human Rights Protection Party">Human Rights Protection Party</a>, led by <a href="/wiki/Tuilaepa_Aiono_Sailele_Malielegaoi" title="Tuilaepa Aiono Sailele Malielegaoi">Tuilaepa Aiono Sailele Malielegaoi</a>, wins a landslide victory in the <b><a href="/wiki/Samoan_general_election,_2016" title="Samoan general election, 2016">Samoan general election</a></b>.</li>
</ul>
<ul style="list-style:none; margin-left:0;">
<li><b><a href="/wiki/Portal:Current_events" title="Portal:Current events">Ongoing events</a></b>:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Zika_virus_outbreak_(2015%E2%80%93present)" title="Zika virus outbreak (2015–present)">Zika virus outbreak</a></li>
<li><a href="/wiki/European_migrant_crisis" title="European migrant crisis">European migrant crisis</a></li>
</ul>
</div>
</li>
<li><b><a href="/wiki/Deaths_in_2016" title="Deaths in 2016">Recent deaths</a></b>:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Hilary_Putnam" title="Hilary Putnam">Hilary Putnam</a></li>
<li><a href="/wiki/Lloyd_Shapley" title="Lloyd Shapley">Lloyd Shapley</a></li>
<li><a href="/wiki/Iolanda_Bala%C8%99" title="Iolanda Balaș">Iolanda Balaș</a></li>
</ul>
</div>
</li>
</ul>
</div>
</td>
</tr>
<tr>
<td style="padding:2px;">
<h2 id="mp-otd-h2" style="margin:3px; background:#cedff2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="On_this_day...">On this day...</span></h2>
</td>
</tr>
<tr>
<td style="color:#000; padding:2px 5px 5px;">
<div id="mp-otd">
<p><b><a href="/wiki/March_15" title="March 15">March 15</a></b>: <b><a href="/wiki/Ides_of_March" title="Ides of March">Ides of March</a></b>; <b><a href="/wiki/Hungarian_Revolution_of_1848" title="Hungarian Revolution of 1848">National Day</a></b> in Hungary (<a href="/wiki/1848" title="1848">1848</a>)</p>
<div id="mp-otd-img" style="float:right;margin-left:0.5em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 100px;"><a class="image" href="/wiki/File:Villa_close_up.jpg" title="Pancho Villa"><img alt="Pancho Villa" data-file-height="574" data-file-width="431" height="133" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/100px-Villa_close_up.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/150px-Villa_close_up.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/200px-Villa_close_up.jpg 2x" width="100"/></a>
<div class="thumbcaption" style="padding: 0.25em 0; word-wrap: break-word;">Pancho Villa</div>
</div>
</div>
<ul>
<li><a href="/wiki/1783" title="1783">1783</a> – A <b><a href="/wiki/Newburgh_Conspiracy" title="Newburgh Conspiracy">potential uprising</a></b> in <a href="/wiki/Newburgh_(city),_New_York" title="Newburgh (city), New York">Newburgh, New York</a>, was defused when <a href="/wiki/George_Washington" title="George Washington">George Washington</a> asked <a href="/wiki/Continental_Army" title="Continental Army">Continental Army</a> officers to support the supremacy of <a href="/wiki/United_States_Congress" title="United States Congress">Congress</a>.</li>
<li><a href="/wiki/1892" title="1892">1892</a> – <b><a href="/wiki/Liverpool_F.C." title="Liverpool F.C.">Liverpool F.C.</a></b>, one of England's most successful <a href="/wiki/Association_football" title="Association football">football</a> clubs, was founded.</li>
<li><a href="/wiki/1916" title="1916">1916</a> – Six days after <a href="/wiki/Pancho_Villa" title="Pancho Villa">Pancho Villa</a> <i>(pictured)</i> and his cross-border raiders attacked <a href="/wiki/Columbus,_New_Mexico" title="Columbus, New Mexico">Columbus, New Mexico</a>, US General <a href="/wiki/John_J._Pershing" title="John J. Pershing">John J. Pershing</a> led a <b><a href="/wiki/Pancho_Villa_Expedition" title="Pancho Villa Expedition">punitive expedition into Mexico</a></b> to pursue Villa.</li>
<li><a href="/wiki/1941" title="1941">1941</a> – <b><a href="/wiki/Philippine_Airlines" title="Philippine Airlines">Philippine Airlines</a></b>, the <a href="/wiki/Flag_carrier" title="Flag carrier">flag carrier</a> of the Philippines took its first flight, making it the oldest commercial airline in Asia operating under its original name.</li>
<li><a href="/wiki/2011" title="2011">2011</a> – <a href="/wiki/Arab_Spring" title="Arab Spring">Arab Spring</a>: Protests erupted <b><a href="/wiki/Syrian_Civil_War" title="Syrian Civil War">across Syria</a></b> against the authoritarian government.</li>
</ul>
<ul style="list-style:none; margin-left:0;">
<li>More anniversaries:
<div class="hlist inline nowraplinks">
<ul>
<li><a href="/wiki/March_14" title="March 14">March 14</a></li>
<li><b><a href="/wiki/March_15" title="March 15">March 15</a></b></li>
<li><a href="/wiki/March_16" title="March 16">March 16</a></li>
</ul>
</div>
</li>
</ul>
<div class="hlist noprint" id="mp-otd-footer" style="text-align: right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Selected_anniversaries/March" title="Wikipedia:Selected anniversaries/March">Archive</a></b></li>
<li><b><a class="extiw" href="https://lists.wikimedia.org/mailman/listinfo/daily-article-l" title="mail:daily-article-l">By email</a></b></li>
<li><b><a href="/wiki/List_of_historical_anniversaries" title="List of historical anniversaries">List of historical anniversaries</a></b></li>
</ul>
<div style="font-size:smaller;">
<ul>
<li>Current date: <span class="nowrap">March 15, 2016</span> (<a href="/wiki/Coordinated_Universal_Time" title="Coordinated Universal Time">UTC</a>)</li>
<li><span class="plainlinks" id="otd-purgelink"><span class="nowrap"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Main_Page&amp;action=purge">Reload this page</a></span></span></li>
</ul>
</div>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table id="mp-lower" style="margin:4px 0 0 0; width:100%; background:none; border-spacing: 0px;">
<tr>
<td class="MainPageBG" style="width:100%; border:1px solid #ddcef2; background:#faf5ff; vertical-align:top; color:#000;">
<table id="mp-bottom" style="width:100%; vertical-align:top; background:#faf5ff; color:#000;">
<tr>
<td style="padding:2px;">
<h2 id="mp-tfp-h2" style="margin:3px; background:#ddcef2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #afa3bf; text-align:left; color:#000; padding:0.2em 0.4em"><span class="mw-headline" id="Today.27s_featured_picture">Today's featured picture</span></h2>
</td>
</tr>
<tr>
<td style="color:#000; padding:2px;">
<div id="mp-tfp">
<table style="margin:0 3px 3px; width:100%; text-align:left; background-color:transparent; border-collapse: collapse;">
<tr>
<td style="padding:0 0.9em 0 0;"><a class="image" href="/wiki/File:Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg" title="Man sweeping volcanic ash"><img alt="Man sweeping volcanic ash" data-file-height="1524" data-file-width="2246" height="258" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg/380px-Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg/570px-Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg/760px-Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg 2x" width="380"/></a></td>
<td style="padding:0 6px 0 0">
<p>A man sweeping <a href="/wiki/Volcanic_ash" title="Volcanic ash">volcanic ash</a> in <a href="/wiki/Yogyakarta" title="Yogyakarta">Yogyakarta</a> during the <b><a href="/wiki/Kelud#2014_eruption" title="Kelud">2014 eruption</a></b> of <a href="/wiki/Kelud" title="Kelud">Kelud</a>. The <a href="/wiki/East_Java" title="East Java">East Javan</a> volcano erupted on 13 February 2014 and sent volcanic ash covering an area of about 500 kilometres (310 mi) in diameter. Ashfall from the eruption "paralyzed Java", closing airports, tourist attractions, and businesses as far away as <a href="/wiki/Bandung" title="Bandung">Bandung</a> and causing millions of dollars in financial losses. Cleaning operations continued for more than a week.</p>
<p><small>Photograph: <a href="/wiki/User:Crisco_1492" title="User:Crisco 1492">Chris Woodrich</a></small></p>
<ul style="list-style:none; margin-left:0; text-align:right;">
<li>Recently featured:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Template:POTD/2016-03-14" title="Template:POTD/2016-03-14"><i>Homme au bain</i></a></li>
<li><a href="/wiki/Template:POTD/2016-03-13" title="Template:POTD/2016-03-13">Wagner VI projection</a></li>
<li><a href="/wiki/Template:POTD/2016-03-12" title="Template:POTD/2016-03-12">Lynx (constellation)</a></li>
</ul>
</div>
</li>
</ul>
<div class="hlist noprint" style="text-align:right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Picture_of_the_day/March_2016" title="Wikipedia:Picture of the day/March 2016">Archive</a></b></li>
<li><b><a href="/wiki/Wikipedia:Featured_pictures" title="Wikipedia:Featured pictures">More featured pictures...</a></b></li>
</ul>
</div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div id="mp-other" style="padding-top:4px; padding-bottom:2px;">
<h2><span class="mw-headline" id="Other_areas_of_Wikipedia">Other areas of Wikipedia</span></h2>
<ul>
<li><b><a href="/wiki/Wikipedia:Community_portal" title="Wikipedia:Community portal">Community portal</a></b> – Bulletin board, projects, resources and activities covering a wide range of Wikipedia areas.</li>
<li><b><a href="/wiki/Wikipedia:Help_desk" title="Wikipedia:Help desk">Help desk</a></b> – Ask questions about using Wikipedia.</li>
<li><b><a href="/wiki/Wikipedia:Local_Embassy" title="Wikipedia:Local Embassy">Local embassy</a></b> – For Wikipedia-related communication in languages other than English.</li>
<li><b><a href="/wiki/Wikipedia:Reference_desk" title="Wikipedia:Reference desk">Reference desk</a></b> – Serving as virtual librarians, Wikipedia volunteers tackle your questions on a wide range of subjects.</li>
<li><b><a href="/wiki/Wikipedia:News" title="Wikipedia:News">Site news</a></b> – Announcements, updates, articles and press releases on Wikipedia and the Wikimedia Foundation.</li>
<li><b><a href="/wiki/Wikipedia:Village_pump" title="Wikipedia:Village pump">Village pump</a></b> – For discussions about Wikipedia itself, including areas for technical issues and policies.</li>
</ul>
</div>
<div id="mp-sister">
<h2><span class="mw-headline" id="Wikipedia.27s_sister_projects">Wikipedia's sister projects</span></h2>
<p>Wikipedia is hosted by the <a href="/wiki/Wikimedia_Foundation" title="Wikimedia Foundation">Wikimedia Foundation</a>, a non-profit organization that also hosts a range of other <a class="extiw" href="//wikimediafoundation.org/wiki/Our_projects" title="wmf:Our projects">projects</a>:</p>
<table class="layout plainlinks" style="width:100%; margin:auto; text-align:left; background:transparent;">
<tr>
<td style="text-align:center; padding:4px;"><a href="//commons.wikimedia.org/wiki/" title="Commons"><img alt="Commons" data-file-height="41" data-file-width="31" height="41" src="//upload.wikimedia.org/wikipedia/en/9/9d/Commons-logo-31px.png" width="31"/></a></td>
<td style="width:33%; padding:4px;"><b><a class="external text" href="//commons.wikimedia.org/">Commons</a></b><br/>
Free media repository</td>
<td style="text-align:center; padding:4px;"><a href="//www.mediawiki.org/wiki/" title="MediaWiki"><img alt="MediaWiki" data-file-height="102" data-file-width="135" height="26" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/35px-Mediawiki-logo.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/53px-Mediawiki-logo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/70px-Mediawiki-logo.png 2x" width="35"/></a></td>
<td style="width:33%; padding:4px;"><b><a class="external text" href="//mediawiki.org/">MediaWiki</a></b><br/>
Wiki software development</td>
<td style="text-align:center; padding:4px;"><a href="//meta.wikimedia.org/wiki/" title="Meta-Wiki"><img alt="Meta-Wiki" data-file-height="35" data-file-width="35" height="35" src="//upload.wikimedia.org/wikipedia/en/b/bc/Meta-logo-35px.png" width="35"/></a></td>
<td style="width:33%; padding:4px;"><b><a class="external text" href="//meta.wikimedia.org/">Meta-Wiki</a></b><br/>
Wikimedia project coordination</td>
</tr>
<tr>
<td style="text-align:center; padding:4px;"><a href="//en.wikibooks.org/wiki/" title="Wikibooks"><img alt="Wikibooks" data-file-height="35" data-file-width="35" height="35" src="//upload.wikimedia.org/wikipedia/en/7/7f/Wikibooks-logo-35px.png" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikibooks.org/">Wikibooks</a></b><br/>
Free textbooks and manuals</td>
<td style="text-align:center; padding:3px;"><a href="//www.wikidata.org/wiki/" title="Wikidata"><img alt="Wikidata" data-file-height="590" data-file-width="1050" height="26" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/47px-Wikidata-logo.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/71px-Wikidata-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/94px-Wikidata-logo.svg.png 2x" width="47"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//www.wikidata.org/">Wikidata</a></b><br/>
Free knowledge base</td>
<td style="text-align:center; padding:4px;"><a href="//en.wikinews.org/wiki/" title="Wikinews"><img alt="Wikinews" data-file-height="30" data-file-width="51" height="30" src="//upload.wikimedia.org/wikipedia/en/6/60/Wikinews-logo-51px.png" width="51"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikinews.org/">Wikinews</a></b><br/>
Free-content news</td>
</tr>
<tr>
<td style="text-align:center; padding:4px;"><a href="//en.wikiquote.org/wiki/" title="Wikiquote"><img alt="Wikiquote" data-file-height="41" data-file-width="51" height="41" src="//upload.wikimedia.org/wikipedia/en/4/46/Wikiquote-logo-51px.png" width="51"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikiquote.org/">Wikiquote</a></b><br/>
Collection of quotations</td>
<td style="text-align:center; padding:4px;"><a href="//en.wikisource.org/wiki/" title="Wikisource"><img alt="Wikisource" data-file-height="37" data-file-width="35" height="37" src="//upload.wikimedia.org/wikipedia/en/b/b6/Wikisource-logo-35px.png" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikisource.org/">Wikisource</a></b><br/>
Free-content library</td>
<td style="text-align:center; padding:4px;"><a href="//species.wikimedia.org/wiki/" title="Wikispecies"><img alt="Wikispecies" data-file-height="41" data-file-width="35" height="41" src="//upload.wikimedia.org/wikipedia/en/b/bf/Wikispecies-logo-35px.png" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//species.wikimedia.org/">Wikispecies</a></b><br/>
Directory of species</td>
</tr>
<tr>
<td style="text-align:center; padding:4px;"><a href="//en.wikiversity.org/wiki/" title="Wikiversity"><img alt="Wikiversity" data-file-height="32" data-file-width="41" height="32" src="//upload.wikimedia.org/wikipedia/en/e/e3/Wikiversity-logo-41px.png" width="41"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikiversity.org/">Wikiversity</a></b><br/>
Free learning materials and activities</td>
<td style="text-align:center; padding:4px;"><a href="//en.wikivoyage.org/wiki/" title="Wikivoyage"><img alt="Wikivoyage" data-file-height="193" data-file-width="193" height="35" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/35px-Wikivoyage-Logo-v3-icon.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/53px-Wikivoyage-Logo-v3-icon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/70px-Wikivoyage-Logo-v3-icon.svg.png 2x" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikivoyage.org/">Wikivoyage</a></b><br/>
Free travel guide</td>
<td style="text-align:center; padding:4px;"><a href="//en.wiktionary.org/wiki/" title="Wiktionary"><img alt="Wiktionary" data-file-height="35" data-file-width="51" height="35" src="//upload.wikimedia.org/wikipedia/en/f/f2/Wiktionary-logo-51px.png" width="51"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wiktionary.org/">Wiktionary</a></b><br/>
Dictionary and thesaurus</td>
</tr>
</table>
</div>
<div id="mp-lang">
<h2><span class="mw-headline" id="Wikipedia_languages">Wikipedia languages</span></h2>
<div class="nowraplinks nourlexpansion plainlinks" id="lang">
<p>This Wikipedia is written in <a href="/wiki/English_language" title="English language">English</a>. Started in 2001<span style="display:none"> (<span class="bday dtstart published updated">2001</span>)</span>, it currently contains <a href="/wiki/Special:Statistics" title="Special:Statistics">5,104,889</a> articles.  Many other Wikipedias are available; some of the largest are listed below.</p>
<ul>
<li id="lang-3">More than 1,000,000 articles:
<div class="hlist inline">
<ul>
<li><a class="external text" href="//de.wikipedia.org/wiki/"><span class="autonym" lang="de" title="German (de:)" xml:lang="de">Deutsch</span></a></li>
<li><a class="external text" href="//es.wikipedia.org/wiki/"><span class="autonym" lang="es" title="Spanish (es:)" xml:lang="es">Español</span></a></li>
<li><a class="external text" href="//fr.wikipedia.org/wiki/"><span class="autonym" lang="fr" title="French (fr:)" xml:lang="fr">Français</span></a></li>
<li><a class="external text" href="//it.wikipedia.org/wiki/"><span class="autonym" lang="it" title="Italian (it:)" xml:lang="it">Italiano</span></a></li>
<li><a class="external text" href="//nl.wikipedia.org/wiki/"><span class="autonym" lang="nl" title="Dutch (nl:)" xml:lang="nl">Nederlands</span></a></li>
<li><a class="external text" href="//ja.wikipedia.org/wiki/"><span class="autonym" lang="ja" title="Japanese (ja:)" xml:lang="ja">日本語</span></a></li>
<li><a class="external text" href="//pl.wikipedia.org/wiki/"><span class="autonym" lang="pl" title="Polish (pl:)" xml:lang="pl">Polski</span></a></li>
<li><a class="external text" href="//ru.wikipedia.org/wiki/"><span class="autonym" lang="ru" title="Russian (ru:)" xml:lang="ru">Русский</span></a></li>
<li><a class="external text" href="//sv.wikipedia.org/wiki/"><span class="autonym" lang="sv" title="Swedish (sv:)" xml:lang="sv">Svenska</span></a></li>
<li><a class="external text" href="//vi.wikipedia.org/wiki/"><span class="autonym" lang="vi" title="Vietnamese (vi:)" xml:lang="vi">Tiếng Việt</span></a></li>
</ul>
</div>
</li>
<li id="lang-2">More than 250,000 articles:
<div class="hlist inline">
<ul>
<li><a class="external text" href="//ar.wikipedia.org/wiki/"><span class="autonym" lang="ar" title="Arabic (ar:)" xml:lang="ar">العربية</span></a></li>
<li><a class="external text" href="//id.wikipedia.org/wiki/"><span class="autonym" lang="id" title="Indonesian (id:)" xml:lang="id">Bahasa Indonesia</span></a></li>
<li><a class="external text" href="//ms.wikipedia.org/wiki/"><span class="autonym" lang="ms" title="Malay (ms:)" xml:lang="ms">Bahasa Melayu</span></a></li>
<li><a class="external text" href="//ca.wikipedia.org/wiki/"><span class="autonym" lang="ca" title="Catalan (ca:)" xml:lang="ca">Català</span></a></li>
<li><a class="external text" href="//cs.wikipedia.org/wiki/"><span class="autonym" lang="cs" title="Czech (cs:)" xml:lang="cs">Čeština</span></a></li>
<li><a class="external text" href="//fa.wikipedia.org/wiki/"><span class="autonym" lang="fa" title="Persian (fa:)" xml:lang="fa">فارسی</span></a></li>
<li><a class="external text" href="//ko.wikipedia.org/wiki/"><span class="autonym" lang="ko" title="Korean (ko:)" xml:lang="ko">한국어</span></a></li>
<li><a class="external text" href="//hu.wikipedia.org/wiki/"><span class="autonym" lang="hu" title="Hungarian (hu:)" xml:lang="hu">Magyar</span></a></li>
<li><a class="external text" href="//no.wikipedia.org/wiki/"><span class="autonym" lang="no" title="Norwegian (no:)" xml:lang="no">Norsk bokmål</span></a></li>
<li><a class="external text" href="//pt.wikipedia.org/wiki/"><span class="autonym" lang="pt" title="Portuguese (pt:)" xml:lang="pt">Português</span></a></li>
<li><a class="external text" href="//ro.wikipedia.org/wiki/"><span class="autonym" lang="ro" title="Romanian (ro:)" xml:lang="ro">Română</span></a></li>
<li><a class="external text" href="//sr.wikipedia.org/wiki/"><span class="autonym" lang="sr" title="Serbian (sr:)" xml:lang="sr">Srpski / српски</span></a></li>
<li><a class="external text" href="//sh.wikipedia.org/wiki/"><span class="autonym" lang="sh" title="Serbo-Croatian (sh:)" xml:lang="sh">Srpskohrvatski / српскохрватски</span></a></li>
<li><a class="external text" href="//fi.wikipedia.org/wiki/"><span class="autonym" lang="fi" title="Finnish (fi:)" xml:lang="fi">Suomi</span></a></li>
<li><a class="external text" href="//tr.wikipedia.org/wiki/"><span class="autonym" lang="tr" title="Turkish (tr:)" xml:lang="tr">Türkçe</span></a></li>
<li><a class="external text" href="//uk.wikipedia.org/wiki/"><span class="autonym" lang="uk" title="Ukrainian (uk:)" xml:lang="uk">Українська</span></a></li>
<li><a class="external text" href="//zh.wikipedia.org/wiki/"><span class="autonym" lang="zh" title="Chinese (zh:)" xml:lang="zh">中文</span></a></li>
</ul>
</div>
</li>
<li id="lang-1">More than 50,000 articles:
<div class="hlist inline">
<ul>
<li><a class="external text" href="//bs.wikipedia.org/wiki/"><span class="autonym" lang="bs" title="Bosnian (bs:)" xml:lang="bs">Bosanski</span></a></li>
<li><a class="external text" href="//bg.wikipedia.org/wiki/"><span class="autonym" lang="bg" title="Bulgarian (bg:)" xml:lang="bg">Български</span></a></li>
<li><a class="external text" href="//da.wikipedia.org/wiki/"><span class="autonym" lang="da" title="Danish (da:)" xml:lang="da">Dansk</span></a></li>
<li><a class="external text" href="//et.wikipedia.org/wiki/"><span class="autonym" lang="et" title="Estonian (et:)" xml:lang="et">Eesti</span></a></li>
<li><a class="external text" href="//el.wikipedia.org/wiki/"><span class="autonym" lang="el" title="Greek (el:)" xml:lang="el">Ελληνικά</span></a></li>
<li><a class="external text" href="//simple.wikipedia.org/wiki/"><span class="autonym" lang="simple" title="Simple English (simple:)" xml:lang="simple">English (simple)</span></a></li>
<li><a class="external text" href="//eo.wikipedia.org/wiki/"><span class="autonym" lang="eo" title="Esperanto (eo:)" xml:lang="eo">Esperanto</span></a></li>
<li><a class="external text" href="//eu.wikipedia.org/wiki/"><span class="autonym" lang="eu" title="Basque (eu:)" xml:lang="eu">Euskara</span></a></li>
<li><a class="external text" href="//gl.wikipedia.org/wiki/"><span class="autonym" lang="gl" title="Galician (gl:)" xml:lang="gl">Galego</span></a></li>
<li><a class="external text" href="//he.wikipedia.org/wiki/"><span class="autonym" lang="he" title="Hebrew (he:)" xml:lang="he">עברית</span></a></li>
<li><a class="external text" href="//hr.wikipedia.org/wiki/"><span class="autonym" lang="hr" title="Croatian (hr:)" xml:lang="hr">Hrvatski</span></a></li>
<li><a class="external text" href="//lv.wikipedia.org/wiki/"><span class="autonym" lang="lv" title="Latvian (lv:)" xml:lang="lv">Latviešu</span></a></li>
<li><a class="external text" href="//lt.wikipedia.org/wiki/"><span class="autonym" lang="lt" title="Lithuanian (lt:)" xml:lang="lt">Lietuvių</span></a></li>
<li><a class="external text" href="//nn.wikipedia.org/wiki/"><span class="autonym" lang="nn" title="Norwegian Nynorsk (nn:)" xml:lang="nn">Norsk nynorsk</span></a></li>
<li><a class="external text" href="//sk.wikipedia.org/wiki/"><span class="autonym" lang="sk" title="Slovak (sk:)" xml:lang="sk">Slovenčina</span></a></li>
<li><a class="external text" href="//sl.wikipedia.org/wiki/"><span class="autonym" lang="sl" title="Slovenian (sl:)" xml:lang="sl">Slovenščina</span></a></li>
<li><a class="external text" href="//th.wikipedia.org/wiki/"><span class="autonym" lang="th" title="Thai (th:)" xml:lang="th">ไทย</span></a></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="plainlinks" id="metalink" style="text-align:center;"><b><a class="extiw" href="//meta.wikimedia.org/wiki/List_of_Wikipedias" title="meta:List of Wikipedias">Complete list of Wikipedias</a></b></div>
</div>
<!-- 
NewPP limit report
Parsed by mw1096
Cached time: 20160315215020
Cache expiry: 3600
Dynamic content: true
CPU time usage: 0.363 seconds
Real time usage: 0.444 seconds
Preprocessor visited node count: 3198/1000000
Preprocessor generated node count: 0/1500000
Post‐expand include size: 101448/2097152 bytes
Template argument size: 6661/2097152 bytes
Highest expansion depth: 14/40
Expensive parser function count: 5/500
Lua time usage: 0.112/10.000 seconds
Lua memory usage: 2.14 MB/50 MB
Number of Wikibase entities loaded: 0-->
<!-- 
Transclusion expansion time report (%,ms,calls,template)
100.00%  328.474      1 - -total
 49.05%  161.113      8 - Template:Main_page_image
 44.60%  146.499      1 - Wikipedia:Main_Page/Tomorrow
 18.27%   60.025      2 - Template:Wikipedia_languages
 17.20%   56.502      2 - Template:In_the_news
 16.99%   55.798      1 - Wikipedia:Today's_featured_article/March_15,_2016
 16.19%   53.167      1 - Template:Did_you_know/Queue/2
 15.83%   51.986      8 - Template:Str_number/trim
 14.65%   48.124      2 - Template:In_the_news/image
 13.74%   45.122     24 - Template:If_empty
-->
<!-- Saved in parser cache with key enwiki:pcache:idhash:15580374-0!*!0!!*!4!* and timestamp 20160315215019 and revision id 696846920
 -->
<noscript><img alt="" height="1" src="//en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" style="border: none; position: absolute;" title="" width="1"/></noscript></div> <div class="printfooter">
						Retrieved from "<a dir="ltr" href="https://en.wikipedia.org/w/index.php?title=Main_Page&amp;oldid=696846920">https://en.wikipedia.org/w/index.php?title=Main_Page&amp;oldid=696846920</a>"					</div>
<div class="catlinks catlinks-allhidden" data-mw="interface" id="catlinks"></div> <div class="visualClear"></div>
</div>
</div>
<div id="mw-navigation">
<h2>Navigation menu</h2>
<div id="mw-head">
<div aria-labelledby="p-personal-label" class="" id="p-personal" role="navigation">
<h3 id="p-personal-label">Personal tools</h3>
<ul>
<li id="pt-anonuserpage">Not logged in</li><li id="pt-anontalk"><a accesskey="n" href="/wiki/Special:MyTalk" title="Discussion about edits from this IP address [n]">Talk</a></li><li id="pt-anoncontribs"><a accesskey="y" href="/wiki/Special:MyContributions" title="A list of edits made from this IP address [y]">Contributions</a></li><li id="pt-createaccount"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Main+Page&amp;type=signup" title="You are encouraged to create an account and log in; however, it is not mandatory">Create account</a></li><li id="pt-login"><a accesskey="o" href="/w/index.php?title=Special:UserLogin&amp;returnto=Main+Page" title="You're encouraged to log in; however, it's not mandatory. [o]">Log in</a></li> </ul>
</div>
<div id="left-navigation">
<div aria-labelledby="p-namespaces-label" class="vectorTabs" id="p-namespaces" role="navigation">
<h3 id="p-namespaces-label">Namespaces</h3>
<ul>
<li class="selected" id="ca-nstab-main"><span><a accesskey="c" href="/wiki/Main_Page" title="View the content page [c]">Main Page</a></span></li>
<li id="ca-talk"><span><a accesskey="t" href="/wiki/Talk:Main_Page" rel="discussion" title="Discussion about the content page [t]">Talk</a></span></li>
</ul>
</div>
<div aria-labelledby="p-variants-label" class="vectorMenu emptyPortlet" id="p-variants" role="navigation">
<h3 id="p-variants-label">
<span>Variants</span><a href="#"></a>
</h3>
<div class="menu">
<ul>
</ul>
</div>
</div>
</div>
<div id="right-navigation">
<div aria-labelledby="p-views-label" class="vectorTabs" id="p-views" role="navigation">
<h3 id="p-views-label">Views</h3>
<ul>
<li class="selected" id="ca-view"><span><a href="/wiki/Main_Page">Read</a></span></li>
<li id="ca-viewsource"><span><a accesskey="e" href="/w/index.php?title=Main_Page&amp;action=edit" title="This page is protected.
You can view its source [e]">View source</a></span></li>
<li class="collapsible" id="ca-history"><span><a accesskey="h" href="/w/index.php?title=Main_Page&amp;action=history" title="Past revisions of this page [h]">View history</a></span></li>
</ul>
</div>
<div aria-labelledby="p-cactions-label" class="vectorMenu emptyPortlet" id="p-cactions" role="navigation">
<h3 id="p-cactions-label"><span>More</span><a href="#"></a></h3>
<div class="menu">
<ul>
</ul>
</div>
</div>
<div id="p-search" role="search">
<h3>
<label for="searchInput">Search</label>
</h3>
<form action="/w/index.php" id="searchform">
<div id="simpleSearch">
<input accesskey="f" id="searchInput" name="search" placeholder="Search" title="Search Wikipedia [f]" type="search"/><input name="title" type="hidden" value="Special:Search"/><input class="searchButton mw-fallbackSearchButton" id="mw-searchButton" name="fulltext" title="Search Wikipedia for this text" type="submit" value="Search"/><input class="searchButton" id="searchButton" name="go" title="Go to a page with this exact name if it exists" type="submit" value="Go"/> </div>
</form>
</div>
</div>
</div>
<div id="mw-panel">
<div id="p-logo" role="banner"><a class="mw-wiki-logo" href="/wiki/Main_Page" title="Visit the main page"></a></div>
<div aria-labelledby="p-navigation-label" class="portal" id="p-navigation" role="navigation">
<h3 id="p-navigation-label">Navigation</h3>
<div class="body">
<ul>
<li id="n-mainpage-description"><a accesskey="z" href="/wiki/Main_Page" title="Visit the main page [z]">Main page</a></li><li id="n-contents"><a href="/wiki/Portal:Contents" title="Guides to browsing Wikipedia">Contents</a></li><li id="n-featuredcontent"><a href="/wiki/Portal:Featured_content" title="Featured content – the best of Wikipedia">Featured content</a></li><li id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Find background information on current events">Current events</a></li><li id="n-randompage"><a accesskey="x" href="/wiki/Special:Random" title="Load a random article [x]">Random article</a></li><li id="n-sitesupport"><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&amp;utm_medium=sidebar&amp;utm_campaign=C13_en.wikipedia.org&amp;uselang=en" title="Support us">Donate to Wikipedia</a></li><li id="n-shoplink"><a href="//shop.wikimedia.org" title="Visit the Wikipedia store">Wikipedia store</a></li> </ul>
</div>
</div>
<div aria-labelledby="p-interaction-label" class="portal" id="p-interaction" role="navigation">
<h3 id="p-interaction-label">Interaction</h3>
<div class="body">
<ul>
<li id="n-help"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">Help</a></li><li id="n-aboutsite"><a href="/wiki/Wikipedia:About" title="Find out about Wikipedia">About Wikipedia</a></li><li id="n-portal"><a href="/wiki/Wikipedia:Community_portal" title="About the project, what you can do, where to find things">Community portal</a></li><li id="n-recentchanges"><a accesskey="r" href="/wiki/Special:RecentChanges" title="A list of recent changes in the wiki [r]">Recent changes</a></li><li id="n-contactpage"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia">Contact page</a></li> </ul>
</div>
</div>
<div aria-labelledby="p-tb-label" class="portal" id="p-tb" role="navigation">
<h3 id="p-tb-label">Tools</h3>
<div class="body">
<ul>
<li id="t-whatlinkshere"><a accesskey="j" href="/wiki/Special:WhatLinksHere/Main_Page" title="List of all English Wikipedia pages containing links to this page [j]">What links here</a></li><li id="t-recentchangeslinked"><a accesskey="k" href="/wiki/Special:RecentChangesLinked/Main_Page" title="Recent changes in pages linked from this page [k]">Related changes</a></li><li id="t-upload"><a accesskey="u" href="/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]">Upload file</a></li><li id="t-specialpages"><a accesskey="q" href="/wiki/Special:SpecialPages" title="A list of all special pages [q]">Special pages</a></li><li id="t-permalink"><a href="/w/index.php?title=Main_Page&amp;oldid=696846920" title="Permanent link to this revision of the page">Permanent link</a></li><li id="t-info"><a href="/w/index.php?title=Main_Page&amp;action=info" title="More information about this page">Page information</a></li><li id="t-wikibase"><a accesskey="g" href="//www.wikidata.org/wiki/Q5296" title="Link to connected data repository item [g]">Wikidata item</a></li><li id="t-cite"><a href="/w/index.php?title=Special:CiteThisPage&amp;page=Main_Page&amp;id=696846920" title="Information on how to cite this page">Cite this page</a></li> </ul>
</div>
</div>
<div aria-labelledby="p-coll-print_export-label" class="portal" id="p-coll-print_export" role="navigation">
<h3 id="p-coll-print_export-label">Print/export</h3>
<div class="body">
<ul>
<li id="coll-create_a_book"><a href="/w/index.php?title=Special:Book&amp;bookcmd=book_creator&amp;referer=Main+Page">Create a book</a></li><li id="coll-download-as-rdf2latex"><a href="/w/index.php?title=Special:Book&amp;bookcmd=render_article&amp;arttitle=Main+Page&amp;returnto=Main+Page&amp;oldid=696846920&amp;writer=rdf2latex">Download as PDF</a></li><li id="t-print"><a accesskey="p" href="/w/index.php?title=Main_Page&amp;printable=yes" title="Printable version of this page [p]">Printable version</a></li> </ul>
</div>
</div>
<div aria-labelledby="p-wikibase-otherprojects-label" class="portal" id="p-wikibase-otherprojects" role="navigation">
<h3 id="p-wikibase-otherprojects-label">In other projects</h3>
<div class="body">
<ul>
<li class="wb-otherproject-link wb-otherproject-commons"><a href="https://commons.wikimedia.org/wiki/Main_Page" hreflang="en">Wikimedia Commons</a></li><li class="wb-otherproject-link wb-otherproject-meta"><a href="https://meta.wikimedia.org/wiki/Main_Page" hreflang="en">Meta-Wiki</a></li><li class="wb-otherproject-link wb-otherproject-species"><a href="https://species.wikimedia.org/wiki/Main_Page" hreflang="en">Wikispecies</a></li><li class="wb-otherproject-link wb-otherproject-wikibooks"><a href="https://en.wikibooks.org/wiki/Main_Page" hreflang="en">Wikibooks</a></li><li class="wb-otherproject-link wb-otherproject-wikidata"><a href="https://www.wikidata.org/wiki/Wikidata:Main_Page" hreflang="en">Wikidata</a></li><li class="wb-otherproject-link wb-otherproject-wikinews"><a href="https://en.wikinews.org/wiki/Main_Page" hreflang="en">Wikinews</a></li><li class="wb-otherproject-link wb-otherproject-wikiquote"><a href="https://en.wikiquote.org/wiki/Main_Page" hreflang="en">Wikiquote</a></li><li class="wb-otherproject-link wb-otherproject-wikisource"><a href="https://en.wikisource.org/wiki/Main_Page" hreflang="en">Wikisource</a></li><li class="wb-otherproject-link wb-otherproject-wikiversity"><a href="https://en.wikiversity.org/wiki/Wikiversity:Main_Page" hreflang="en">Wikiversity</a></li><li class="wb-otherproject-link wb-otherproject-wikivoyage"><a href="https://en.wikivoyage.org/wiki/Main_Page" hreflang="en">Wikivoyage</a></li> </ul>
</div>
</div>
<div aria-labelledby="p-lang-label" class="portal" id="p-lang" role="navigation">
<h3 id="p-lang-label">Languages</h3>
<div class="body">
<ul>
<li class="interlanguage-link interwiki-simple"><a href="//simple.wikipedia.org/wiki/" hreflang="simple" lang="simple" title="Simple English">Simple English</a></li><li class="interlanguage-link interwiki-ar"><a href="//ar.wikipedia.org/wiki/" hreflang="ar" lang="ar" title="Arabic">العربية</a></li><li class="interlanguage-link interwiki-id"><a href="//id.wikipedia.org/wiki/" hreflang="id" lang="id" title="Indonesian">Bahasa Indonesia</a></li><li class="interlanguage-link interwiki-ms"><a href="//ms.wikipedia.org/wiki/" hreflang="ms" lang="ms" title="Malay">Bahasa Melayu</a></li><li class="interlanguage-link interwiki-bs"><a href="//bs.wikipedia.org/wiki/" hreflang="bs" lang="bs" title="Bosnian">Bosanski</a></li><li class="interlanguage-link interwiki-bg"><a href="//bg.wikipedia.org/wiki/" hreflang="bg" lang="bg" title="Bulgarian">Български</a></li><li class="interlanguage-link interwiki-ca"><a href="//ca.wikipedia.org/wiki/" hreflang="ca" lang="ca" title="Catalan">Català</a></li><li class="interlanguage-link interwiki-cs"><a href="//cs.wikipedia.org/wiki/" hreflang="cs" lang="cs" title="Czech">Čeština</a></li><li class="interlanguage-link interwiki-da"><a href="//da.wikipedia.org/wiki/" hreflang="da" lang="da" title="Danish">Dansk</a></li><li class="interlanguage-link interwiki-de"><a href="//de.wikipedia.org/wiki/" hreflang="de" lang="de" title="German">Deutsch</a></li><li class="interlanguage-link interwiki-et"><a href="//et.wikipedia.org/wiki/" hreflang="et" lang="et" title="Estonian">Eesti</a></li><li class="interlanguage-link interwiki-el"><a href="//el.wikipedia.org/wiki/" hreflang="el" lang="el" title="Greek">Ελληνικά</a></li><li class="interlanguage-link interwiki-es"><a href="//es.wikipedia.org/wiki/" hreflang="es" lang="es" title="Spanish">Español</a></li><li class="interlanguage-link interwiki-eo"><a href="//eo.wikipedia.org/wiki/" hreflang="eo" lang="eo" title="Esperanto">Esperanto</a></li><li class="interlanguage-link interwiki-eu"><a href="//eu.wikipedia.org/wiki/" hreflang="eu" lang="eu" title="Basque">Euskara</a></li><li class="interlanguage-link interwiki-fa"><a href="//fa.wikipedia.org/wiki/" hreflang="fa" lang="fa" title="Persian">فارسی</a></li><li class="interlanguage-link interwiki-fr"><a href="//fr.wikipedia.org/wiki/" hreflang="fr" lang="fr" title="French">Français</a></li><li class="interlanguage-link interwiki-gl"><a href="//gl.wikipedia.org/wiki/" hreflang="gl" lang="gl" title="Galician">Galego</a></li><li class="interlanguage-link interwiki-ko"><a href="//ko.wikipedia.org/wiki/" hreflang="ko" lang="ko" title="Korean">한국어</a></li><li class="interlanguage-link interwiki-he"><a href="//he.wikipedia.org/wiki/" hreflang="he" lang="he" title="Hebrew">עברית</a></li><li class="interlanguage-link interwiki-hr"><a href="//hr.wikipedia.org/wiki/" hreflang="hr" lang="hr" title="Croatian">Hrvatski</a></li><li class="interlanguage-link interwiki-it"><a href="//it.wikipedia.org/wiki/" hreflang="it" lang="it" title="Italian">Italiano</a></li><li class="interlanguage-link interwiki-ka"><a href="//ka.wikipedia.org/wiki/" hreflang="ka" lang="ka" title="Georgian">ქართული</a></li><li class="interlanguage-link interwiki-lv"><a href="//lv.wikipedia.org/wiki/" hreflang="lv" lang="lv" title="Latvian">Latviešu</a></li><li class="interlanguage-link interwiki-lt"><a href="//lt.wikipedia.org/wiki/" hreflang="lt" lang="lt" title="Lithuanian">Lietuvių</a></li><li class="interlanguage-link interwiki-hu"><a href="//hu.wikipedia.org/wiki/" hreflang="hu" lang="hu" title="Hungarian">Magyar</a></li><li class="interlanguage-link interwiki-nl"><a href="//nl.wikipedia.org/wiki/" hreflang="nl" lang="nl" title="Dutch">Nederlands</a></li><li class="interlanguage-link interwiki-ja"><a href="//ja.wikipedia.org/wiki/" hreflang="ja" lang="ja" title="Japanese">日本語</a></li><li class="interlanguage-link interwiki-no"><a href="//no.wikipedia.org/wiki/" hreflang="no" lang="no" title="Norwegian">Norsk bokmål</a></li><li class="interlanguage-link interwiki-nn"><a href="//nn.wikipedia.org/wiki/" hreflang="nn" lang="nn" title="Norwegian Nynorsk">Norsk nynorsk</a></li><li class="interlanguage-link interwiki-pl"><a href="//pl.wikipedia.org/wiki/" hreflang="pl" lang="pl" title="Polish">Polski</a></li><li class="interlanguage-link interwiki-pt"><a href="//pt.wikipedia.org/wiki/" hreflang="pt" lang="pt" title="Portuguese">Português</a></li><li class="interlanguage-link interwiki-ro"><a href="//ro.wikipedia.org/wiki/" hreflang="ro" lang="ro" title="Romanian">Română</a></li><li class="interlanguage-link interwiki-ru"><a href="//ru.wikipedia.org/wiki/" hreflang="ru" lang="ru" title="Russian">Русский</a></li><li class="interlanguage-link interwiki-sk"><a href="//sk.wikipedia.org/wiki/" hreflang="sk" lang="sk" title="Slovak">Slovenčina</a></li><li class="interlanguage-link interwiki-sl"><a href="//sl.wikipedia.org/wiki/" hreflang="sl" lang="sl" title="Slovenian">Slovenščina</a></li><li class="interlanguage-link interwiki-sr"><a href="//sr.wikipedia.org/wiki/" hreflang="sr" lang="sr" title="Serbian">Српски / srpski</a></li><li class="interlanguage-link interwiki-sh"><a href="//sh.wikipedia.org/wiki/" hreflang="sh" lang="sh" title="Serbo-Croatian">Srpskohrvatski / српскохрватски</a></li><li class="interlanguage-link interwiki-fi"><a href="//fi.wikipedia.org/wiki/" hreflang="fi" lang="fi" title="Finnish">Suomi</a></li><li class="interlanguage-link interwiki-sv"><a href="//sv.wikipedia.org/wiki/" hreflang="sv" lang="sv" title="Swedish">Svenska</a></li><li class="interlanguage-link interwiki-th"><a href="//th.wikipedia.org/wiki/" hreflang="th" lang="th" title="Thai">ไทย</a></li><li class="interlanguage-link interwiki-vi"><a href="//vi.wikipedia.org/wiki/" hreflang="vi" lang="vi" title="Vietnamese">Tiếng Việt</a></li><li class="interlanguage-link interwiki-tr"><a href="//tr.wikipedia.org/wiki/" hreflang="tr" lang="tr" title="Turkish">Türkçe</a></li><li class="interlanguage-link interwiki-uk"><a href="//uk.wikipedia.org/wiki/" hreflang="uk" lang="uk" title="Ukrainian">Українська</a></li><li class="interlanguage-link interwiki-zh"><a href="//zh.wikipedia.org/wiki/" hreflang="zh" lang="zh" title="Chinese">中文</a></li><li class="uls-p-lang-dummy"><a href="#"></a></li> </ul>
</div>
</div>
</div>
</div>
<div id="footer" role="contentinfo">
<ul id="footer-info">
<li id="footer-info-lastmod"> This page was last modified on 26 December 2015, at 10:03.</li>
<li id="footer-info-copyright">Text is available under the <a href="//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License" rel="license">Creative Commons Attribution-ShareAlike License</a><a href="//creativecommons.org/licenses/by-sa/3.0/" rel="license" style="display:none;"></a>;
additional terms may apply.  By using this site, you agree to the <a href="//wikimediafoundation.org/wiki/Terms_of_Use">Terms of Use</a> and <a href="//wikimediafoundation.org/wiki/Privacy_policy">Privacy Policy</a>. Wikipedia® is a registered trademark of the <a href="//www.wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, a non-profit organization.</li>
</ul>
<ul id="footer-places">
<li id="footer-places-privacy"><a href="//wikimediafoundation.org/wiki/Privacy_policy" title="wmf:Privacy policy">Privacy policy</a></li>
<li id="footer-places-about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
<li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
<li id="footer-places-contact"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
<li id="footer-places-developers"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute">Developers</a></li>
<li id="footer-places-cookiestatement"><a href="//wikimediafoundation.org/wiki/Cookie_statement">Cookie statement</a></li>
<li id="footer-places-mobileview"><a class="noprint stopMobileRedirectToggle" href="//en.m.wikipedia.org/w/index.php?title=Main_Page&amp;mobileaction=toggle_view_mobile">Mobile view</a></li>
</ul>
<ul class="noprint" id="footer-icons">
<li id="footer-copyrightico">
<a href="//wikimediafoundation.org/"><img alt="Wikimedia Foundation" height="31" src="/static/images/wikimedia-button.png" srcset="/static/images/wikimedia-button-1.5x.png 1.5x, /static/images/wikimedia-button-2x.png 2x" width="88"/></a> </li>
<li id="footer-poweredbyico">
<a href="//www.mediawiki.org/"><img alt="Powered by MediaWiki" height="31" src="/w/resources/assets/poweredby_mediawiki_88x31.png" srcset="/w/resources/assets/poweredby_mediawiki_132x47.png 1.5x, /w/resources/assets/poweredby_mediawiki_176x62.png 2x" width="88"/></a> </li>
</ul>
<div style="clear:both"></div>
</div>
<script>(window.RLQ = window.RLQ || []).push(function () {
mw.loader.state({"ext.globalCssJs.site":"ready","ext.globalCssJs.user":"ready","user":"ready","user.groups":"ready"});mw.loader.load(["mediawiki.action.view.postEdit","site","mediawiki.user","mediawiki.hidpi","mediawiki.page.ready","mediawiki.searchSuggest","ext.eventLogging.subscriber","ext.gadget.teahouse","ext.gadget.ReferenceTooltips","ext.gadget.DRN-wizard","ext.gadget.charinsert","ext.gadget.refToolbar","ext.gadget.switcher","ext.gadget.featured-articles-links","mmv.bootstrap.autostart","ext.visualEditor.targetLoader","ext.wikimediaEvents","ext.navigationTiming","schema.UniversalLanguageSelector","ext.uls.eventlogger","ext.uls.interlanguage"]);
} );</script><script>(window.RLQ = window.RLQ || []).push(function () {
mw.config.set({"wgBackendResponseTime":61,"wgHostname":"mw1250"}); /* @nomin */
} );</script>
</body>
</html>

Beautiful Soup creates a linked tree, where the root of the tree is the whole HTML document. It has children, which are all the elements of the HTML document. Each of those has children, which are any elements they have. Each element of the tree is aware of its parent and children.

You probably don't want to iterate through each child of the whole HTML document - you want a specific thing or things in it. In some cases, you want to seach for html tags. Common tages include:

tag function
<title> The title of the web page (shows up in your browser header)
<meta> Information about the web page that is not shown to the user
<a> Links to other web pages
<p> Paragraph of text

In other cases, you want to look for IDs. These are optional information added to a tag to help developers or other code on the web page know which tag is for which purpose. Unlike tags, these are not standardized, so they will change from site to site and author to author. They will look something like:

<div id="banner" class="MyBanner">

With the advent of CSS (Cascading Style Sheets), it is also common for people to define their own HTML styling tags. So, while things like lists (<ol>) and tables (<table>, <tr>, and <td>) are in the HTML specification, it's not safe to assume they'll be used when you expect.

As a general strategy, when web scraping, you should have the page you want to scrape open in a browser with either the Developer Tools window open, or the HTML source displayed.

We can pull out elements by tag with:


In [10]:
page.p


Out[10]:
<p><b><a href="/wiki/California_State_Route_78" title="California State Route 78">State Route 78</a></b> is a <a href="/wiki/State_highway" title="State highway">state highway</a> in <a href="/wiki/California" title="California">California</a> that runs from <a href="/wiki/Oceanside,_California" title="Oceanside, California">Oceanside</a> east to <a href="/wiki/Blythe,_California" title="Blythe, California">Blythe</a>, a few miles from <a href="/wiki/Arizona" title="Arizona">Arizona</a>. Its western terminus is at <a class="mw-redirect" href="/wiki/Interstate_5_(California)" title="Interstate 5 (California)">Interstate 5</a> in <a href="/wiki/San_Diego_County,_California" title="San Diego County, California">San Diego County</a> and its eastern terminus is at <a class="mw-redirect" href="/wiki/Interstate_10_(California)" title="Interstate 10 (California)">Interstate 10</a> in <a href="/wiki/Riverside_County,_California" title="Riverside County, California">Riverside County</a>. The route is a freeway through the heavily populated cities of northern San Diego County and a two-lane highway running through the <a href="/wiki/Cuyamaca_Mountains" title="Cuyamaca Mountains">Cuyamaca Mountains</a> to <a href="/wiki/Julian,_California" title="Julian, California">Julian</a>. In <a href="/wiki/Imperial_County,_California" title="Imperial County, California">Imperial County</a>, it travels through the desert near the <a href="/wiki/Salton_Sea" title="Salton Sea">Salton Sea</a> and passes through the city of <a href="/wiki/Brawley,_California" title="Brawley, California">Brawley</a> before turning north into an area of sand dunes on the way to its terminus in Blythe. Portions of the route existed as early as 1900, and it was one of the original state highways designated in 1934. The freeway section in the <a class="mw-redirect" href="/wiki/San_Diego_North_County,_California" title="San Diego North County, California">North County</a> of <a href="/wiki/San_Diego" title="San Diego">San Diego</a> that connects Oceanside and <a href="/wiki/Escondido,_California" title="Escondido, California">Escondido</a> was built in the middle of the 20th century in several stages, including a transitory stage known as the Vista Way Freeway, and has been improved several times. An expressway bypass of the city of Brawley was completed in 2012. There are many projects slated to improve the freeway due to increasing congestion. (<a href="/wiki/California_State_Route_78" title="California State Route 78"><b>Full article...</b></a>)</p>

This is grabbing the paragraph tag from the page. If we want the first link from the first paragraph, we can try:


In [11]:
page.p.a


Out[11]:
<a href="/wiki/California_State_Route_78" title="California State Route 78">State Route 78</a>

But what if we want all the links? We are going to use a method of bs4's elements called find_all.


In [12]:
page.p.findAll('a')


Out[12]:
[<a href="/wiki/California_State_Route_78" title="California State Route 78">State Route 78</a>,
 <a href="/wiki/State_highway" title="State highway">state highway</a>,
 <a href="/wiki/California" title="California">California</a>,
 <a href="/wiki/Oceanside,_California" title="Oceanside, California">Oceanside</a>,
 <a href="/wiki/Blythe,_California" title="Blythe, California">Blythe</a>,
 <a href="/wiki/Arizona" title="Arizona">Arizona</a>,
 <a class="mw-redirect" href="/wiki/Interstate_5_(California)" title="Interstate 5 (California)">Interstate 5</a>,
 <a href="/wiki/San_Diego_County,_California" title="San Diego County, California">San Diego County</a>,
 <a class="mw-redirect" href="/wiki/Interstate_10_(California)" title="Interstate 10 (California)">Interstate 10</a>,
 <a href="/wiki/Riverside_County,_California" title="Riverside County, California">Riverside County</a>,
 <a href="/wiki/Cuyamaca_Mountains" title="Cuyamaca Mountains">Cuyamaca Mountains</a>,
 <a href="/wiki/Julian,_California" title="Julian, California">Julian</a>,
 <a href="/wiki/Imperial_County,_California" title="Imperial County, California">Imperial County</a>,
 <a href="/wiki/Salton_Sea" title="Salton Sea">Salton Sea</a>,
 <a href="/wiki/Brawley,_California" title="Brawley, California">Brawley</a>,
 <a class="mw-redirect" href="/wiki/San_Diego_North_County,_California" title="San Diego North County, California">North County</a>,
 <a href="/wiki/San_Diego" title="San Diego">San Diego</a>,
 <a href="/wiki/Escondido,_California" title="Escondido, California">Escondido</a>,
 <a href="/wiki/California_State_Route_78" title="California State Route 78"><b>Full article...</b></a>]

What if you want all the elements in that paragraph, and not just the links? bs4 has an iterator for children:


In [13]:
for element in page.p.children:
    print(element)


<b><a href="/wiki/California_State_Route_78" title="California State Route 78">State Route 78</a></b>
 is a 
<a href="/wiki/State_highway" title="State highway">state highway</a>
 in 
<a href="/wiki/California" title="California">California</a>
 that runs from 
<a href="/wiki/Oceanside,_California" title="Oceanside, California">Oceanside</a>
 east to 
<a href="/wiki/Blythe,_California" title="Blythe, California">Blythe</a>
, a few miles from 
<a href="/wiki/Arizona" title="Arizona">Arizona</a>
. Its western terminus is at 
<a class="mw-redirect" href="/wiki/Interstate_5_(California)" title="Interstate 5 (California)">Interstate 5</a>
 in 
<a href="/wiki/San_Diego_County,_California" title="San Diego County, California">San Diego County</a>
 and its eastern terminus is at 
<a class="mw-redirect" href="/wiki/Interstate_10_(California)" title="Interstate 10 (California)">Interstate 10</a>
 in 
<a href="/wiki/Riverside_County,_California" title="Riverside County, California">Riverside County</a>
. The route is a freeway through the heavily populated cities of northern San Diego County and a two-lane highway running through the 
<a href="/wiki/Cuyamaca_Mountains" title="Cuyamaca Mountains">Cuyamaca Mountains</a>
 to 
<a href="/wiki/Julian,_California" title="Julian, California">Julian</a>
. In 
<a href="/wiki/Imperial_County,_California" title="Imperial County, California">Imperial County</a>
, it travels through the desert near the 
<a href="/wiki/Salton_Sea" title="Salton Sea">Salton Sea</a>
 and passes through the city of 
<a href="/wiki/Brawley,_California" title="Brawley, California">Brawley</a>
 before turning north into an area of sand dunes on the way to its terminus in Blythe. Portions of the route existed as early as 1900, and it was one of the original state highways designated in 1934. The freeway section in the 
<a class="mw-redirect" href="/wiki/San_Diego_North_County,_California" title="San Diego North County, California">North County</a>
 of 
<a href="/wiki/San_Diego" title="San Diego">San Diego</a>
 that connects Oceanside and 
<a href="/wiki/Escondido,_California" title="Escondido, California">Escondido</a>
 was built in the middle of the 20th century in several stages, including a transitory stage known as the Vista Way Freeway, and has been improved several times. An expressway bypass of the city of Brawley was completed in 2012. There are many projects slated to improve the freeway due to increasing congestion. (
<a href="/wiki/California_State_Route_78" title="California State Route 78"><b>Full article...</b></a>
)

HTML elements can be nested, but children only iterates at one level below the element. If you want everything, you can iterate with descendants


In [14]:
for element in page.p.descendants:
    print(element)


<b><a href="/wiki/California_State_Route_78" title="California State Route 78">State Route 78</a></b>
<a href="/wiki/California_State_Route_78" title="California State Route 78">State Route 78</a>
State Route 78
 is a 
<a href="/wiki/State_highway" title="State highway">state highway</a>
state highway
 in 
<a href="/wiki/California" title="California">California</a>
California
 that runs from 
<a href="/wiki/Oceanside,_California" title="Oceanside, California">Oceanside</a>
Oceanside
 east to 
<a href="/wiki/Blythe,_California" title="Blythe, California">Blythe</a>
Blythe
, a few miles from 
<a href="/wiki/Arizona" title="Arizona">Arizona</a>
Arizona
. Its western terminus is at 
<a class="mw-redirect" href="/wiki/Interstate_5_(California)" title="Interstate 5 (California)">Interstate 5</a>
Interstate 5
 in 
<a href="/wiki/San_Diego_County,_California" title="San Diego County, California">San Diego County</a>
San Diego County
 and its eastern terminus is at 
<a class="mw-redirect" href="/wiki/Interstate_10_(California)" title="Interstate 10 (California)">Interstate 10</a>
Interstate 10
 in 
<a href="/wiki/Riverside_County,_California" title="Riverside County, California">Riverside County</a>
Riverside County
. The route is a freeway through the heavily populated cities of northern San Diego County and a two-lane highway running through the 
<a href="/wiki/Cuyamaca_Mountains" title="Cuyamaca Mountains">Cuyamaca Mountains</a>
Cuyamaca Mountains
 to 
<a href="/wiki/Julian,_California" title="Julian, California">Julian</a>
Julian
. In 
<a href="/wiki/Imperial_County,_California" title="Imperial County, California">Imperial County</a>
Imperial County
, it travels through the desert near the 
<a href="/wiki/Salton_Sea" title="Salton Sea">Salton Sea</a>
Salton Sea
 and passes through the city of 
<a href="/wiki/Brawley,_California" title="Brawley, California">Brawley</a>
Brawley
 before turning north into an area of sand dunes on the way to its terminus in Blythe. Portions of the route existed as early as 1900, and it was one of the original state highways designated in 1934. The freeway section in the 
<a class="mw-redirect" href="/wiki/San_Diego_North_County,_California" title="San Diego North County, California">North County</a>
North County
 of 
<a href="/wiki/San_Diego" title="San Diego">San Diego</a>
San Diego
 that connects Oceanside and 
<a href="/wiki/Escondido,_California" title="Escondido, California">Escondido</a>
Escondido
 was built in the middle of the 20th century in several stages, including a transitory stage known as the Vista Way Freeway, and has been improved several times. An expressway bypass of the city of Brawley was completed in 2012. There are many projects slated to improve the freeway due to increasing congestion. (
<a href="/wiki/California_State_Route_78" title="California State Route 78"><b>Full article...</b></a>
<b>Full article...</b>
Full article...
)

This splits out formatting tags that we probably don't care about, like bold-faced text, and so we probably won't use it again.

In reality, you won't be inspecting things yourself, so you'll want to get in the habit of using your knowledge from day 2 about looping and control structures to make decisions for you. For example, what if we wanted to look at every link in the page, then print it's neighbor but only if the link is not to a media file? We could do something like:


In [15]:
for link in page.find_all('a'):
    if link.attrs.get('class') != 'mw-redirect':
        print(link.find_next())


<div id="siteNotice"><!-- CentralNotice --></div>
<a href="#p-search">search</a>
<div class="mw-content-ltr" dir="ltr" id="mw-content-text" lang="en"><table id="mp-topbanner" style="width:100%; background:#f9f9f9; margin:1.2em 0 6px 0; border:1px solid #ddd;">
<tr>
<td style="width:61%; color:#000;">
<table style="width:280px; border:none; background:none;">
<tr>
<td style="width:280px; text-align:center; white-space:nowrap; color:#000;">
<div style="font-size:162%; border:none; margin:0; padding:.1em; color:#000;">Welcome to <a href="/wiki/Wikipedia" title="Wikipedia">Wikipedia</a>,</div>
<div style="top:+0.2em; font-size:95%;">the <a href="/wiki/Free_content" title="Free content">free</a> <a href="/wiki/Encyclopedia" title="Encyclopedia">encyclopedia</a> that <a href="/wiki/Wikipedia:Introduction" title="Wikipedia:Introduction">anyone can edit</a>.</div>
<div id="articlecount" style="font-size:85%;"><a href="/wiki/Special:Statistics" title="Special:Statistics">5,104,889</a> articles in <a href="/wiki/English_language" title="English language">English</a></div>
</td>
</tr>
</table>
</td>
<td style="width:13%; font-size:95%;">
<ul>
<li><a href="/wiki/Portal:Arts" title="Portal:Arts">Arts</a></li>
<li><a href="/wiki/Portal:Biography" title="Portal:Biography">Biography</a></li>
<li><a href="/wiki/Portal:Geography" title="Portal:Geography">Geography</a></li>
</ul>
</td>
<td style="width:13%; font-size:95%;">
<ul>
<li><a href="/wiki/Portal:History" title="Portal:History">History</a></li>
<li><a href="/wiki/Portal:Mathematics" title="Portal:Mathematics">Mathematics</a></li>
<li><a href="/wiki/Portal:Science" title="Portal:Science">Science</a></li>
</ul>
</td>
<td style="width:13%; font-size:95%;">
<ul>
<li><a href="/wiki/Portal:Society" title="Portal:Society">Society</a></li>
<li><a href="/wiki/Portal:Technology" title="Portal:Technology">Technology</a></li>
<li><b><a href="/wiki/Portal:Contents/Portals" title="Portal:Contents/Portals">All portals</a></b></li>
</ul>
</td>
</tr>
</table>
<table id="mp-upper" style="width: 100%; margin:4px 0 0 0; background:none; border-spacing: 0px;">
<tr>
<td class="MainPageBG" style="width:55%; border:1px solid #cef2e0; background:#f5fffa; vertical-align:top; color:#000;">
<table id="mp-left" style="width:100%; vertical-align:top; background:#f5fffa;">
<tr>
<td style="padding:2px;">
<h2 id="mp-tfa-h2" style="margin:3px; background:#cef2e0; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3bfb1; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="From_today.27s_featured_article">From today's featured article</span></h2>
</td>
</tr>
<tr>
<td style="color:#000;">
<div id="mp-tfa" style="padding:2px 5px">
<div id="mp-tfa-img" style="float: left; margin: 0.5em 0.9em 0.4em 0em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 178px;"><a class="image" href="/wiki/File:CASR78atS11_(cropped).jpg" title="SR 78 in Oceanside at the El Camino Real overpass"><img alt="SR 78 in Oceanside at the El Camino Real overpass" data-file-height="1080" data-file-width="1920" height="100" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/25/CASR78atS11_%28cropped%29.jpg/178px-CASR78atS11_%28cropped%29.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/25/CASR78atS11_%28cropped%29.jpg/267px-CASR78atS11_%28cropped%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/25/CASR78atS11_%28cropped%29.jpg/356px-CASR78atS11_%28cropped%29.jpg 2x" width="178"/></a></div>
</div>
<p><b><a href="/wiki/California_State_Route_78" title="California State Route 78">State Route 78</a></b> is a <a href="/wiki/State_highway" title="State highway">state highway</a> in <a href="/wiki/California" title="California">California</a> that runs from <a href="/wiki/Oceanside,_California" title="Oceanside, California">Oceanside</a> east to <a href="/wiki/Blythe,_California" title="Blythe, California">Blythe</a>, a few miles from <a href="/wiki/Arizona" title="Arizona">Arizona</a>. Its western terminus is at <a class="mw-redirect" href="/wiki/Interstate_5_(California)" title="Interstate 5 (California)">Interstate 5</a> in <a href="/wiki/San_Diego_County,_California" title="San Diego County, California">San Diego County</a> and its eastern terminus is at <a class="mw-redirect" href="/wiki/Interstate_10_(California)" title="Interstate 10 (California)">Interstate 10</a> in <a href="/wiki/Riverside_County,_California" title="Riverside County, California">Riverside County</a>. The route is a freeway through the heavily populated cities of northern San Diego County and a two-lane highway running through the <a href="/wiki/Cuyamaca_Mountains" title="Cuyamaca Mountains">Cuyamaca Mountains</a> to <a href="/wiki/Julian,_California" title="Julian, California">Julian</a>. In <a href="/wiki/Imperial_County,_California" title="Imperial County, California">Imperial County</a>, it travels through the desert near the <a href="/wiki/Salton_Sea" title="Salton Sea">Salton Sea</a> and passes through the city of <a href="/wiki/Brawley,_California" title="Brawley, California">Brawley</a> before turning north into an area of sand dunes on the way to its terminus in Blythe. Portions of the route existed as early as 1900, and it was one of the original state highways designated in 1934. The freeway section in the <a class="mw-redirect" href="/wiki/San_Diego_North_County,_California" title="San Diego North County, California">North County</a> of <a href="/wiki/San_Diego" title="San Diego">San Diego</a> that connects Oceanside and <a href="/wiki/Escondido,_California" title="Escondido, California">Escondido</a> was built in the middle of the 20th century in several stages, including a transitory stage known as the Vista Way Freeway, and has been improved several times. An expressway bypass of the city of Brawley was completed in 2012. There are many projects slated to improve the freeway due to increasing congestion. (<a href="/wiki/California_State_Route_78" title="California State Route 78"><b>Full article...</b></a>)</p>
<ul style="list-style:none; margin-left:0; text-align:right;">
<li>Recently featured:
<div class="hlist inline">
<ul>
<li><i><a href="/wiki/Sarcoscypha_coccinea" title="Sarcoscypha coccinea">Sarcoscypha coccinea</a></i></li>
<li><a href="/wiki/Japanese_battleship_Asahi" title="Japanese battleship Asahi">Japanese battleship <i>Asahi</i></a></li>
<li><a href="/wiki/Isabella_Beeton" title="Isabella Beeton">Isabella Beeton</a></li>
</ul>
</div>
</li>
</ul>
<div class="hlist noprint" id="mp-tfa-footer" style="text-align: right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Today%27s_featured_article/March_2016" title="Wikipedia:Today's featured article/March 2016">Archive</a></b></li>
<li><b><a class="extiw" href="https://lists.wikimedia.org/mailman/listinfo/daily-article-l" title="mail:daily-article-l">By email</a></b></li>
<li><b><a href="/wiki/Wikipedia:Featured_articles" title="Wikipedia:Featured articles">More featured articles...</a></b></li>
</ul>
</div>
</div>
</td>
</tr>
<tr>
<td style="padding:2px;">
<h2 id="mp-dyk-h2" style="margin:3px; background:#cef2e0; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3bfb1; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="Did_you_know...">Did you know...</span></h2>
</td>
</tr>
<tr>
<td style="color:#000; padding:2px 5px 5px;">
<div id="mp-dyk">
<div id="mp-dyk-img" style="float:right; margin-left:0.5em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 120px;"><a class="image" href="/wiki/File:Bilikiss_Adebiyi_CEO.jpg" title="Bilikiss Adebiyi"><img alt="Bilikiss Adebiyi" data-file-height="500" data-file-width="447" height="133" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Bilikiss_Adebiyi_CEO.jpg/119px-Bilikiss_Adebiyi_CEO.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Bilikiss_Adebiyi_CEO.jpg/179px-Bilikiss_Adebiyi_CEO.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Bilikiss_Adebiyi_CEO.jpg/238px-Bilikiss_Adebiyi_CEO.jpg 2x" width="119"/></a>
<div class="thumbcaption" style="padding: 0.25em 0; word-wrap: break-word;">Bilikiss Adebiyi</div>
</div>
</div>
<ul>
<li>... that <b><a href="/wiki/Bilikiss_Adebiyi_Abiola" title="Bilikiss Adebiyi Abiola">Bilikiss Adebiyi</a></b> <i>(pictured)</i> planned to collect rubbish in the streets of Nigeria while taking her <a href="/wiki/Master_of_Business_Administration" title="Master of Business Administration">MBA</a> at <a href="/wiki/Massachusetts_Institute_of_Technology" title="Massachusetts Institute of Technology">MIT</a>?</li>
<li>... that the <a href="/wiki/BBC" title="BBC">BBC</a> re-launched its former television channel <a href="/wiki/BBC_Three_(former)" title="BBC Three (former)">BBC Three</a> as an <b><a href="/wiki/BBC_Three_(Internet_television)" title="BBC Three (Internet television)">Internet television service</a></b>?</li>
<li>... that the Sanskrit text <b><a href="/wiki/Manasollasa" title="Manasollasa">Manasollasa</a></b> is a 12th-century encyclopedia covering topics such as garden design, cuisine recipes, veterinary medicine, jewelry, painting, music, and dance?</li>
<li>... that the species name for <i><b><a href="/wiki/Burmaleon" title="Burmaleon">Burmaleon magnificus</a></b></i> was coined for the quality of preservation in the fossils?</li>
<li>... that the documentary film <i><b><a href="/wiki/No_Land%27s_Song" title="No Land's Song">No Land's Song</a></b></i> spotlights women's protests against an Iranian ban on public female solo singing before male audiences?</li>
<li>... that uninjured reporters commandeered a <a href="/wiki/Medical_evacuation" title="Medical evacuation">medical evacuation</a> helicopter during <b><a href="/wiki/Campaign_Z" title="Campaign Z">Campaign Z</a></b>?</li>
<li>... that of an estimated 100,000 <b><a href="/wiki/German_Jewish_military_personnel_of_World_War_I" title="German Jewish military personnel of World War I">German Jews</a></b> who served in the <a href="/wiki/German_Army_(German_Empire)" title="German Army (German Empire)">German Army</a> in <a href="/wiki/World_War_I" title="World War I">World War I</a>, 12,000 were killed in action?</li>
</ul>
<p><b>Correction</b>: we erroneously claimed here that in 1964 <a href="/wiki/Jim_Hazelton" title="Jim Hazelton">Jim Hazelton</a> was the first Australian to fly a single-engine aircraft across the Pacific, but <a href="/wiki/Charles_Kingsford_Smith" title="Charles Kingsford Smith">Charles Kingsford Smith</a> and copilot <a href="/wiki/Gordon_Taylor_(aviator)" title="Gordon Taylor (aviator)">Gordon Taylor</a> were actually the first to do so in 1934 in their <a href="/wiki/Lockheed_Altair" title="Lockheed Altair">Lockheed Altair</a> <i><a href="/wiki/Lady_Southern_Cross" title="Lady Southern Cross">Lady Southern Cross</a></i>.</p>
<div class="hlist noprint" id="mp-dyk-footer" style="text-align:right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Recent_additions" title="Wikipedia:Recent additions">Recently improved articles</a></b></li>
<li><b><a href="/wiki/Wikipedia:Your_first_article" title="Wikipedia:Your first article">Start a new article</a></b></li>
<li><b><a href="/wiki/Template_talk:Did_you_know" title="Template talk:Did you know">Nominate an article</a></b></li>
</ul>
</div>
</div>
</td>
</tr>
</table>
</td>
<td style="border:1px solid transparent;"></td>
<td class="MainPageBG" style="width:45%; border:1px solid #cedff2; background:#f5faff; vertical-align:top;">
<table id="mp-right" style="width:100%; vertical-align:top; background:#f5faff;">
<tr>
<td style="padding:2px;">
<h2 id="mp-itn-h2" style="margin:3px; background:#cedff2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="In_the_news">In the news</span></h2>
</td>
</tr>
<tr>
<td style="color:#000; padding:2px 5px;">
<div id="mp-itn">
<div id="mp-itn-img" style="float:right;margin-left:0.5em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 120px;"><a href="/wiki/File:Total_Solar_Eclipse,_9_March_2016,_from_Balikpapan,_East_Kalimantan,_Indonesia.JPG" title="Total solar eclipse, viewed from Balikpapan"><img alt="Total solar eclipse, viewed from Balikpapan" data-file-height="388" data-file-width="396" height="118" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG/120px-Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG/180px-Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG/240px-Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG 2x" width="120"/></a>
<div class="thumbcaption" style="padding: 0.25em 0; word-wrap: break-word;">Total solar eclipse, viewed from <a href="/wiki/Balikpapan" title="Balikpapan">Balikpapan</a></div>
</div>
</div>
<ul>
<li><b><a href="/wiki/March_2016_Ankara_bombing" title="March 2016 Ankara bombing">An explosion</a></b> in <a href="/wiki/Ankara" title="Ankara">Ankara</a>, Turkey, kills 37 people and injures at least 125 others.</li>
<li>At least 18 people are killed in <b><a href="/wiki/2016_Grand-Bassam_shootings" title="2016 Grand-Bassam shootings">shootings</a></b> at a beach resort in <a href="/wiki/Grand-Bassam" title="Grand-Bassam">Grand-Bassam</a>, Ivory Coast.</li>
<li><a href="/wiki/Google_DeepMind" title="Google DeepMind">Google DeepMind</a>'s <a href="/wiki/AlphaGo" title="AlphaGo">AlphaGo</a> computer program <b><a href="/wiki/AlphaGo_versus_Lee_Sedol" title="AlphaGo versus Lee Sedol">wins a series</a></b> against <a href="/wiki/Lee_Sedol" title="Lee Sedol">Lee Sedol</a>, one of the world's best <a href="/wiki/Go_(game)" title="Go (game)">Go</a> players.</li>
<li>A total <a href="/wiki/Solar_eclipse" title="Solar eclipse">solar eclipse</a> <b><a href="/wiki/Solar_eclipse_of_March_9,_2016" title="Solar eclipse of March 9, 2016">occurs</a></b>, with totality <i>(pictured)</i> visible from Indonesia and the North Pacific.</li>
<li>In the <b><a href="/wiki/Slovak_parliamentary_election,_2016" title="Slovak parliamentary election, 2016">Slovak parliamentary election</a></b>, <a href="/wiki/Direction_%E2%80%93_Social_Democracy" title="Direction – Social Democracy">Direction – Social Democracy</a> remains the largest political party but loses its majority in the <a href="/wiki/National_Council_(Slovakia)" title="National Council (Slovakia)">National Council</a>.</li>
<li>The <a href="/wiki/Human_Rights_Protection_Party" title="Human Rights Protection Party">Human Rights Protection Party</a>, led by <a href="/wiki/Tuilaepa_Aiono_Sailele_Malielegaoi" title="Tuilaepa Aiono Sailele Malielegaoi">Tuilaepa Aiono Sailele Malielegaoi</a>, wins a landslide victory in the <b><a href="/wiki/Samoan_general_election,_2016" title="Samoan general election, 2016">Samoan general election</a></b>.</li>
</ul>
<ul style="list-style:none; margin-left:0;">
<li><b><a href="/wiki/Portal:Current_events" title="Portal:Current events">Ongoing events</a></b>:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Zika_virus_outbreak_(2015%E2%80%93present)" title="Zika virus outbreak (2015–present)">Zika virus outbreak</a></li>
<li><a href="/wiki/European_migrant_crisis" title="European migrant crisis">European migrant crisis</a></li>
</ul>
</div>
</li>
<li><b><a href="/wiki/Deaths_in_2016" title="Deaths in 2016">Recent deaths</a></b>:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Hilary_Putnam" title="Hilary Putnam">Hilary Putnam</a></li>
<li><a href="/wiki/Lloyd_Shapley" title="Lloyd Shapley">Lloyd Shapley</a></li>
<li><a href="/wiki/Iolanda_Bala%C8%99" title="Iolanda Balaș">Iolanda Balaș</a></li>
</ul>
</div>
</li>
</ul>
</div>
</td>
</tr>
<tr>
<td style="padding:2px;">
<h2 id="mp-otd-h2" style="margin:3px; background:#cedff2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="On_this_day...">On this day...</span></h2>
</td>
</tr>
<tr>
<td style="color:#000; padding:2px 5px 5px;">
<div id="mp-otd">
<p><b><a href="/wiki/March_15" title="March 15">March 15</a></b>: <b><a href="/wiki/Ides_of_March" title="Ides of March">Ides of March</a></b>; <b><a href="/wiki/Hungarian_Revolution_of_1848" title="Hungarian Revolution of 1848">National Day</a></b> in Hungary (<a href="/wiki/1848" title="1848">1848</a>)</p>
<div id="mp-otd-img" style="float:right;margin-left:0.5em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 100px;"><a class="image" href="/wiki/File:Villa_close_up.jpg" title="Pancho Villa"><img alt="Pancho Villa" data-file-height="574" data-file-width="431" height="133" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/100px-Villa_close_up.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/150px-Villa_close_up.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/200px-Villa_close_up.jpg 2x" width="100"/></a>
<div class="thumbcaption" style="padding: 0.25em 0; word-wrap: break-word;">Pancho Villa</div>
</div>
</div>
<ul>
<li><a href="/wiki/1783" title="1783">1783</a> – A <b><a href="/wiki/Newburgh_Conspiracy" title="Newburgh Conspiracy">potential uprising</a></b> in <a href="/wiki/Newburgh_(city),_New_York" title="Newburgh (city), New York">Newburgh, New York</a>, was defused when <a href="/wiki/George_Washington" title="George Washington">George Washington</a> asked <a href="/wiki/Continental_Army" title="Continental Army">Continental Army</a> officers to support the supremacy of <a href="/wiki/United_States_Congress" title="United States Congress">Congress</a>.</li>
<li><a href="/wiki/1892" title="1892">1892</a> – <b><a href="/wiki/Liverpool_F.C." title="Liverpool F.C.">Liverpool F.C.</a></b>, one of England's most successful <a href="/wiki/Association_football" title="Association football">football</a> clubs, was founded.</li>
<li><a href="/wiki/1916" title="1916">1916</a> – Six days after <a href="/wiki/Pancho_Villa" title="Pancho Villa">Pancho Villa</a> <i>(pictured)</i> and his cross-border raiders attacked <a href="/wiki/Columbus,_New_Mexico" title="Columbus, New Mexico">Columbus, New Mexico</a>, US General <a href="/wiki/John_J._Pershing" title="John J. Pershing">John J. Pershing</a> led a <b><a href="/wiki/Pancho_Villa_Expedition" title="Pancho Villa Expedition">punitive expedition into Mexico</a></b> to pursue Villa.</li>
<li><a href="/wiki/1941" title="1941">1941</a> – <b><a href="/wiki/Philippine_Airlines" title="Philippine Airlines">Philippine Airlines</a></b>, the <a href="/wiki/Flag_carrier" title="Flag carrier">flag carrier</a> of the Philippines took its first flight, making it the oldest commercial airline in Asia operating under its original name.</li>
<li><a href="/wiki/2011" title="2011">2011</a> – <a href="/wiki/Arab_Spring" title="Arab Spring">Arab Spring</a>: Protests erupted <b><a href="/wiki/Syrian_Civil_War" title="Syrian Civil War">across Syria</a></b> against the authoritarian government.</li>
</ul>
<ul style="list-style:none; margin-left:0;">
<li>More anniversaries:
<div class="hlist inline nowraplinks">
<ul>
<li><a href="/wiki/March_14" title="March 14">March 14</a></li>
<li><b><a href="/wiki/March_15" title="March 15">March 15</a></b></li>
<li><a href="/wiki/March_16" title="March 16">March 16</a></li>
</ul>
</div>
</li>
</ul>
<div class="hlist noprint" id="mp-otd-footer" style="text-align: right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Selected_anniversaries/March" title="Wikipedia:Selected anniversaries/March">Archive</a></b></li>
<li><b><a class="extiw" href="https://lists.wikimedia.org/mailman/listinfo/daily-article-l" title="mail:daily-article-l">By email</a></b></li>
<li><b><a href="/wiki/List_of_historical_anniversaries" title="List of historical anniversaries">List of historical anniversaries</a></b></li>
</ul>
<div style="font-size:smaller;">
<ul>
<li>Current date: <span class="nowrap">March 15, 2016</span> (<a href="/wiki/Coordinated_Universal_Time" title="Coordinated Universal Time">UTC</a>)</li>
<li><span class="plainlinks" id="otd-purgelink"><span class="nowrap"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Main_Page&amp;action=purge">Reload this page</a></span></span></li>
</ul>
</div>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table id="mp-lower" style="margin:4px 0 0 0; width:100%; background:none; border-spacing: 0px;">
<tr>
<td class="MainPageBG" style="width:100%; border:1px solid #ddcef2; background:#faf5ff; vertical-align:top; color:#000;">
<table id="mp-bottom" style="width:100%; vertical-align:top; background:#faf5ff; color:#000;">
<tr>
<td style="padding:2px;">
<h2 id="mp-tfp-h2" style="margin:3px; background:#ddcef2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #afa3bf; text-align:left; color:#000; padding:0.2em 0.4em"><span class="mw-headline" id="Today.27s_featured_picture">Today's featured picture</span></h2>
</td>
</tr>
<tr>
<td style="color:#000; padding:2px;">
<div id="mp-tfp">
<table style="margin:0 3px 3px; width:100%; text-align:left; background-color:transparent; border-collapse: collapse;">
<tr>
<td style="padding:0 0.9em 0 0;"><a class="image" href="/wiki/File:Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg" title="Man sweeping volcanic ash"><img alt="Man sweeping volcanic ash" data-file-height="1524" data-file-width="2246" height="258" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg/380px-Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg/570px-Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg/760px-Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg 2x" width="380"/></a></td>
<td style="padding:0 6px 0 0">
<p>A man sweeping <a href="/wiki/Volcanic_ash" title="Volcanic ash">volcanic ash</a> in <a href="/wiki/Yogyakarta" title="Yogyakarta">Yogyakarta</a> during the <b><a href="/wiki/Kelud#2014_eruption" title="Kelud">2014 eruption</a></b> of <a href="/wiki/Kelud" title="Kelud">Kelud</a>. The <a href="/wiki/East_Java" title="East Java">East Javan</a> volcano erupted on 13 February 2014 and sent volcanic ash covering an area of about 500 kilometres (310 mi) in diameter. Ashfall from the eruption "paralyzed Java", closing airports, tourist attractions, and businesses as far away as <a href="/wiki/Bandung" title="Bandung">Bandung</a> and causing millions of dollars in financial losses. Cleaning operations continued for more than a week.</p>
<p><small>Photograph: <a href="/wiki/User:Crisco_1492" title="User:Crisco 1492">Chris Woodrich</a></small></p>
<ul style="list-style:none; margin-left:0; text-align:right;">
<li>Recently featured:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Template:POTD/2016-03-14" title="Template:POTD/2016-03-14"><i>Homme au bain</i></a></li>
<li><a href="/wiki/Template:POTD/2016-03-13" title="Template:POTD/2016-03-13">Wagner VI projection</a></li>
<li><a href="/wiki/Template:POTD/2016-03-12" title="Template:POTD/2016-03-12">Lynx (constellation)</a></li>
</ul>
</div>
</li>
</ul>
<div class="hlist noprint" style="text-align:right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Picture_of_the_day/March_2016" title="Wikipedia:Picture of the day/March 2016">Archive</a></b></li>
<li><b><a href="/wiki/Wikipedia:Featured_pictures" title="Wikipedia:Featured pictures">More featured pictures...</a></b></li>
</ul>
</div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div id="mp-other" style="padding-top:4px; padding-bottom:2px;">
<h2><span class="mw-headline" id="Other_areas_of_Wikipedia">Other areas of Wikipedia</span></h2>
<ul>
<li><b><a href="/wiki/Wikipedia:Community_portal" title="Wikipedia:Community portal">Community portal</a></b> – Bulletin board, projects, resources and activities covering a wide range of Wikipedia areas.</li>
<li><b><a href="/wiki/Wikipedia:Help_desk" title="Wikipedia:Help desk">Help desk</a></b> – Ask questions about using Wikipedia.</li>
<li><b><a href="/wiki/Wikipedia:Local_Embassy" title="Wikipedia:Local Embassy">Local embassy</a></b> – For Wikipedia-related communication in languages other than English.</li>
<li><b><a href="/wiki/Wikipedia:Reference_desk" title="Wikipedia:Reference desk">Reference desk</a></b> – Serving as virtual librarians, Wikipedia volunteers tackle your questions on a wide range of subjects.</li>
<li><b><a href="/wiki/Wikipedia:News" title="Wikipedia:News">Site news</a></b> – Announcements, updates, articles and press releases on Wikipedia and the Wikimedia Foundation.</li>
<li><b><a href="/wiki/Wikipedia:Village_pump" title="Wikipedia:Village pump">Village pump</a></b> – For discussions about Wikipedia itself, including areas for technical issues and policies.</li>
</ul>
</div>
<div id="mp-sister">
<h2><span class="mw-headline" id="Wikipedia.27s_sister_projects">Wikipedia's sister projects</span></h2>
<p>Wikipedia is hosted by the <a href="/wiki/Wikimedia_Foundation" title="Wikimedia Foundation">Wikimedia Foundation</a>, a non-profit organization that also hosts a range of other <a class="extiw" href="//wikimediafoundation.org/wiki/Our_projects" title="wmf:Our projects">projects</a>:</p>
<table class="layout plainlinks" style="width:100%; margin:auto; text-align:left; background:transparent;">
<tr>
<td style="text-align:center; padding:4px;"><a href="//commons.wikimedia.org/wiki/" title="Commons"><img alt="Commons" data-file-height="41" data-file-width="31" height="41" src="//upload.wikimedia.org/wikipedia/en/9/9d/Commons-logo-31px.png" width="31"/></a></td>
<td style="width:33%; padding:4px;"><b><a class="external text" href="//commons.wikimedia.org/">Commons</a></b><br/>
Free media repository</td>
<td style="text-align:center; padding:4px;"><a href="//www.mediawiki.org/wiki/" title="MediaWiki"><img alt="MediaWiki" data-file-height="102" data-file-width="135" height="26" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/35px-Mediawiki-logo.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/53px-Mediawiki-logo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/70px-Mediawiki-logo.png 2x" width="35"/></a></td>
<td style="width:33%; padding:4px;"><b><a class="external text" href="//mediawiki.org/">MediaWiki</a></b><br/>
Wiki software development</td>
<td style="text-align:center; padding:4px;"><a href="//meta.wikimedia.org/wiki/" title="Meta-Wiki"><img alt="Meta-Wiki" data-file-height="35" data-file-width="35" height="35" src="//upload.wikimedia.org/wikipedia/en/b/bc/Meta-logo-35px.png" width="35"/></a></td>
<td style="width:33%; padding:4px;"><b><a class="external text" href="//meta.wikimedia.org/">Meta-Wiki</a></b><br/>
Wikimedia project coordination</td>
</tr>
<tr>
<td style="text-align:center; padding:4px;"><a href="//en.wikibooks.org/wiki/" title="Wikibooks"><img alt="Wikibooks" data-file-height="35" data-file-width="35" height="35" src="//upload.wikimedia.org/wikipedia/en/7/7f/Wikibooks-logo-35px.png" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikibooks.org/">Wikibooks</a></b><br/>
Free textbooks and manuals</td>
<td style="text-align:center; padding:3px;"><a href="//www.wikidata.org/wiki/" title="Wikidata"><img alt="Wikidata" data-file-height="590" data-file-width="1050" height="26" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/47px-Wikidata-logo.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/71px-Wikidata-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/94px-Wikidata-logo.svg.png 2x" width="47"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//www.wikidata.org/">Wikidata</a></b><br/>
Free knowledge base</td>
<td style="text-align:center; padding:4px;"><a href="//en.wikinews.org/wiki/" title="Wikinews"><img alt="Wikinews" data-file-height="30" data-file-width="51" height="30" src="//upload.wikimedia.org/wikipedia/en/6/60/Wikinews-logo-51px.png" width="51"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikinews.org/">Wikinews</a></b><br/>
Free-content news</td>
</tr>
<tr>
<td style="text-align:center; padding:4px;"><a href="//en.wikiquote.org/wiki/" title="Wikiquote"><img alt="Wikiquote" data-file-height="41" data-file-width="51" height="41" src="//upload.wikimedia.org/wikipedia/en/4/46/Wikiquote-logo-51px.png" width="51"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikiquote.org/">Wikiquote</a></b><br/>
Collection of quotations</td>
<td style="text-align:center; padding:4px;"><a href="//en.wikisource.org/wiki/" title="Wikisource"><img alt="Wikisource" data-file-height="37" data-file-width="35" height="37" src="//upload.wikimedia.org/wikipedia/en/b/b6/Wikisource-logo-35px.png" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikisource.org/">Wikisource</a></b><br/>
Free-content library</td>
<td style="text-align:center; padding:4px;"><a href="//species.wikimedia.org/wiki/" title="Wikispecies"><img alt="Wikispecies" data-file-height="41" data-file-width="35" height="41" src="//upload.wikimedia.org/wikipedia/en/b/bf/Wikispecies-logo-35px.png" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//species.wikimedia.org/">Wikispecies</a></b><br/>
Directory of species</td>
</tr>
<tr>
<td style="text-align:center; padding:4px;"><a href="//en.wikiversity.org/wiki/" title="Wikiversity"><img alt="Wikiversity" data-file-height="32" data-file-width="41" height="32" src="//upload.wikimedia.org/wikipedia/en/e/e3/Wikiversity-logo-41px.png" width="41"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikiversity.org/">Wikiversity</a></b><br/>
Free learning materials and activities</td>
<td style="text-align:center; padding:4px;"><a href="//en.wikivoyage.org/wiki/" title="Wikivoyage"><img alt="Wikivoyage" data-file-height="193" data-file-width="193" height="35" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/35px-Wikivoyage-Logo-v3-icon.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/53px-Wikivoyage-Logo-v3-icon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/70px-Wikivoyage-Logo-v3-icon.svg.png 2x" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikivoyage.org/">Wikivoyage</a></b><br/>
Free travel guide</td>
<td style="text-align:center; padding:4px;"><a href="//en.wiktionary.org/wiki/" title="Wiktionary"><img alt="Wiktionary" data-file-height="35" data-file-width="51" height="35" src="//upload.wikimedia.org/wikipedia/en/f/f2/Wiktionary-logo-51px.png" width="51"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wiktionary.org/">Wiktionary</a></b><br/>
Dictionary and thesaurus</td>
</tr>
</table>
</div>
<div id="mp-lang">
<h2><span class="mw-headline" id="Wikipedia_languages">Wikipedia languages</span></h2>
<div class="nowraplinks nourlexpansion plainlinks" id="lang">
<p>This Wikipedia is written in <a href="/wiki/English_language" title="English language">English</a>. Started in 2001<span style="display:none"> (<span class="bday dtstart published updated">2001</span>)</span>, it currently contains <a href="/wiki/Special:Statistics" title="Special:Statistics">5,104,889</a> articles.  Many other Wikipedias are available; some of the largest are listed below.</p>
<ul>
<li id="lang-3">More than 1,000,000 articles:
<div class="hlist inline">
<ul>
<li><a class="external text" href="//de.wikipedia.org/wiki/"><span class="autonym" lang="de" title="German (de:)" xml:lang="de">Deutsch</span></a></li>
<li><a class="external text" href="//es.wikipedia.org/wiki/"><span class="autonym" lang="es" title="Spanish (es:)" xml:lang="es">Español</span></a></li>
<li><a class="external text" href="//fr.wikipedia.org/wiki/"><span class="autonym" lang="fr" title="French (fr:)" xml:lang="fr">Français</span></a></li>
<li><a class="external text" href="//it.wikipedia.org/wiki/"><span class="autonym" lang="it" title="Italian (it:)" xml:lang="it">Italiano</span></a></li>
<li><a class="external text" href="//nl.wikipedia.org/wiki/"><span class="autonym" lang="nl" title="Dutch (nl:)" xml:lang="nl">Nederlands</span></a></li>
<li><a class="external text" href="//ja.wikipedia.org/wiki/"><span class="autonym" lang="ja" title="Japanese (ja:)" xml:lang="ja">日本語</span></a></li>
<li><a class="external text" href="//pl.wikipedia.org/wiki/"><span class="autonym" lang="pl" title="Polish (pl:)" xml:lang="pl">Polski</span></a></li>
<li><a class="external text" href="//ru.wikipedia.org/wiki/"><span class="autonym" lang="ru" title="Russian (ru:)" xml:lang="ru">Русский</span></a></li>
<li><a class="external text" href="//sv.wikipedia.org/wiki/"><span class="autonym" lang="sv" title="Swedish (sv:)" xml:lang="sv">Svenska</span></a></li>
<li><a class="external text" href="//vi.wikipedia.org/wiki/"><span class="autonym" lang="vi" title="Vietnamese (vi:)" xml:lang="vi">Tiếng Việt</span></a></li>
</ul>
</div>
</li>
<li id="lang-2">More than 250,000 articles:
<div class="hlist inline">
<ul>
<li><a class="external text" href="//ar.wikipedia.org/wiki/"><span class="autonym" lang="ar" title="Arabic (ar:)" xml:lang="ar">العربية</span></a></li>
<li><a class="external text" href="//id.wikipedia.org/wiki/"><span class="autonym" lang="id" title="Indonesian (id:)" xml:lang="id">Bahasa Indonesia</span></a></li>
<li><a class="external text" href="//ms.wikipedia.org/wiki/"><span class="autonym" lang="ms" title="Malay (ms:)" xml:lang="ms">Bahasa Melayu</span></a></li>
<li><a class="external text" href="//ca.wikipedia.org/wiki/"><span class="autonym" lang="ca" title="Catalan (ca:)" xml:lang="ca">Català</span></a></li>
<li><a class="external text" href="//cs.wikipedia.org/wiki/"><span class="autonym" lang="cs" title="Czech (cs:)" xml:lang="cs">Čeština</span></a></li>
<li><a class="external text" href="//fa.wikipedia.org/wiki/"><span class="autonym" lang="fa" title="Persian (fa:)" xml:lang="fa">فارسی</span></a></li>
<li><a class="external text" href="//ko.wikipedia.org/wiki/"><span class="autonym" lang="ko" title="Korean (ko:)" xml:lang="ko">한국어</span></a></li>
<li><a class="external text" href="//hu.wikipedia.org/wiki/"><span class="autonym" lang="hu" title="Hungarian (hu:)" xml:lang="hu">Magyar</span></a></li>
<li><a class="external text" href="//no.wikipedia.org/wiki/"><span class="autonym" lang="no" title="Norwegian (no:)" xml:lang="no">Norsk bokmål</span></a></li>
<li><a class="external text" href="//pt.wikipedia.org/wiki/"><span class="autonym" lang="pt" title="Portuguese (pt:)" xml:lang="pt">Português</span></a></li>
<li><a class="external text" href="//ro.wikipedia.org/wiki/"><span class="autonym" lang="ro" title="Romanian (ro:)" xml:lang="ro">Română</span></a></li>
<li><a class="external text" href="//sr.wikipedia.org/wiki/"><span class="autonym" lang="sr" title="Serbian (sr:)" xml:lang="sr">Srpski / српски</span></a></li>
<li><a class="external text" href="//sh.wikipedia.org/wiki/"><span class="autonym" lang="sh" title="Serbo-Croatian (sh:)" xml:lang="sh">Srpskohrvatski / српскохрватски</span></a></li>
<li><a class="external text" href="//fi.wikipedia.org/wiki/"><span class="autonym" lang="fi" title="Finnish (fi:)" xml:lang="fi">Suomi</span></a></li>
<li><a class="external text" href="//tr.wikipedia.org/wiki/"><span class="autonym" lang="tr" title="Turkish (tr:)" xml:lang="tr">Türkçe</span></a></li>
<li><a class="external text" href="//uk.wikipedia.org/wiki/"><span class="autonym" lang="uk" title="Ukrainian (uk:)" xml:lang="uk">Українська</span></a></li>
<li><a class="external text" href="//zh.wikipedia.org/wiki/"><span class="autonym" lang="zh" title="Chinese (zh:)" xml:lang="zh">中文</span></a></li>
</ul>
</div>
</li>
<li id="lang-1">More than 50,000 articles:
<div class="hlist inline">
<ul>
<li><a class="external text" href="//bs.wikipedia.org/wiki/"><span class="autonym" lang="bs" title="Bosnian (bs:)" xml:lang="bs">Bosanski</span></a></li>
<li><a class="external text" href="//bg.wikipedia.org/wiki/"><span class="autonym" lang="bg" title="Bulgarian (bg:)" xml:lang="bg">Български</span></a></li>
<li><a class="external text" href="//da.wikipedia.org/wiki/"><span class="autonym" lang="da" title="Danish (da:)" xml:lang="da">Dansk</span></a></li>
<li><a class="external text" href="//et.wikipedia.org/wiki/"><span class="autonym" lang="et" title="Estonian (et:)" xml:lang="et">Eesti</span></a></li>
<li><a class="external text" href="//el.wikipedia.org/wiki/"><span class="autonym" lang="el" title="Greek (el:)" xml:lang="el">Ελληνικά</span></a></li>
<li><a class="external text" href="//simple.wikipedia.org/wiki/"><span class="autonym" lang="simple" title="Simple English (simple:)" xml:lang="simple">English (simple)</span></a></li>
<li><a class="external text" href="//eo.wikipedia.org/wiki/"><span class="autonym" lang="eo" title="Esperanto (eo:)" xml:lang="eo">Esperanto</span></a></li>
<li><a class="external text" href="//eu.wikipedia.org/wiki/"><span class="autonym" lang="eu" title="Basque (eu:)" xml:lang="eu">Euskara</span></a></li>
<li><a class="external text" href="//gl.wikipedia.org/wiki/"><span class="autonym" lang="gl" title="Galician (gl:)" xml:lang="gl">Galego</span></a></li>
<li><a class="external text" href="//he.wikipedia.org/wiki/"><span class="autonym" lang="he" title="Hebrew (he:)" xml:lang="he">עברית</span></a></li>
<li><a class="external text" href="//hr.wikipedia.org/wiki/"><span class="autonym" lang="hr" title="Croatian (hr:)" xml:lang="hr">Hrvatski</span></a></li>
<li><a class="external text" href="//lv.wikipedia.org/wiki/"><span class="autonym" lang="lv" title="Latvian (lv:)" xml:lang="lv">Latviešu</span></a></li>
<li><a class="external text" href="//lt.wikipedia.org/wiki/"><span class="autonym" lang="lt" title="Lithuanian (lt:)" xml:lang="lt">Lietuvių</span></a></li>
<li><a class="external text" href="//nn.wikipedia.org/wiki/"><span class="autonym" lang="nn" title="Norwegian Nynorsk (nn:)" xml:lang="nn">Norsk nynorsk</span></a></li>
<li><a class="external text" href="//sk.wikipedia.org/wiki/"><span class="autonym" lang="sk" title="Slovak (sk:)" xml:lang="sk">Slovenčina</span></a></li>
<li><a class="external text" href="//sl.wikipedia.org/wiki/"><span class="autonym" lang="sl" title="Slovenian (sl:)" xml:lang="sl">Slovenščina</span></a></li>
<li><a class="external text" href="//th.wikipedia.org/wiki/"><span class="autonym" lang="th" title="Thai (th:)" xml:lang="th">ไทย</span></a></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="plainlinks" id="metalink" style="text-align:center;"><b><a class="extiw" href="//meta.wikimedia.org/wiki/List_of_Wikipedias" title="meta:List of Wikipedias">Complete list of Wikipedias</a></b></div>
</div>
<!-- 
NewPP limit report
Parsed by mw1096
Cached time: 20160315215020
Cache expiry: 3600
Dynamic content: true
CPU time usage: 0.363 seconds
Real time usage: 0.444 seconds
Preprocessor visited node count: 3198/1000000
Preprocessor generated node count: 0/1500000
Post‐expand include size: 101448/2097152 bytes
Template argument size: 6661/2097152 bytes
Highest expansion depth: 14/40
Expensive parser function count: 5/500
Lua time usage: 0.112/10.000 seconds
Lua memory usage: 2.14 MB/50 MB
Number of Wikibase entities loaded: 0-->
<!-- 
Transclusion expansion time report (%,ms,calls,template)
100.00%  328.474      1 - -total
 49.05%  161.113      8 - Template:Main_page_image
 44.60%  146.499      1 - Wikipedia:Main_Page/Tomorrow
 18.27%   60.025      2 - Template:Wikipedia_languages
 17.20%   56.502      2 - Template:In_the_news
 16.99%   55.798      1 - Wikipedia:Today's_featured_article/March_15,_2016
 16.19%   53.167      1 - Template:Did_you_know/Queue/2
 15.83%   51.986      8 - Template:Str_number/trim
 14.65%   48.124      2 - Template:In_the_news/image
 13.74%   45.122     24 - Template:If_empty
-->
<!-- Saved in parser cache with key enwiki:pcache:idhash:15580374-0!*!0!!*!4!* and timestamp 20160315215019 and revision id 696846920
 -->
<noscript><img alt="" height="1" src="//en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" style="border: none; position: absolute;" title="" width="1"/></noscript></div>
<div style="top:+0.2em; font-size:95%;">the <a href="/wiki/Free_content" title="Free content">free</a> <a href="/wiki/Encyclopedia" title="Encyclopedia">encyclopedia</a> that <a href="/wiki/Wikipedia:Introduction" title="Wikipedia:Introduction">anyone can edit</a>.</div>
<a href="/wiki/Encyclopedia" title="Encyclopedia">encyclopedia</a>
<a href="/wiki/Wikipedia:Introduction" title="Wikipedia:Introduction">anyone can edit</a>
<div id="articlecount" style="font-size:85%;"><a href="/wiki/Special:Statistics" title="Special:Statistics">5,104,889</a> articles in <a href="/wiki/English_language" title="English language">English</a></div>
<a href="/wiki/English_language" title="English language">English</a>
<td style="width:13%; font-size:95%;">
<ul>
<li><a href="/wiki/Portal:Arts" title="Portal:Arts">Arts</a></li>
<li><a href="/wiki/Portal:Biography" title="Portal:Biography">Biography</a></li>
<li><a href="/wiki/Portal:Geography" title="Portal:Geography">Geography</a></li>
</ul>
</td>
<li><a href="/wiki/Portal:Biography" title="Portal:Biography">Biography</a></li>
<li><a href="/wiki/Portal:Geography" title="Portal:Geography">Geography</a></li>
<td style="width:13%; font-size:95%;">
<ul>
<li><a href="/wiki/Portal:History" title="Portal:History">History</a></li>
<li><a href="/wiki/Portal:Mathematics" title="Portal:Mathematics">Mathematics</a></li>
<li><a href="/wiki/Portal:Science" title="Portal:Science">Science</a></li>
</ul>
</td>
<li><a href="/wiki/Portal:Mathematics" title="Portal:Mathematics">Mathematics</a></li>
<li><a href="/wiki/Portal:Science" title="Portal:Science">Science</a></li>
<td style="width:13%; font-size:95%;">
<ul>
<li><a href="/wiki/Portal:Society" title="Portal:Society">Society</a></li>
<li><a href="/wiki/Portal:Technology" title="Portal:Technology">Technology</a></li>
<li><b><a href="/wiki/Portal:Contents/Portals" title="Portal:Contents/Portals">All portals</a></b></li>
</ul>
</td>
<li><a href="/wiki/Portal:Technology" title="Portal:Technology">Technology</a></li>
<li><b><a href="/wiki/Portal:Contents/Portals" title="Portal:Contents/Portals">All portals</a></b></li>
<table id="mp-upper" style="width: 100%; margin:4px 0 0 0; background:none; border-spacing: 0px;">
<tr>
<td class="MainPageBG" style="width:55%; border:1px solid #cef2e0; background:#f5fffa; vertical-align:top; color:#000;">
<table id="mp-left" style="width:100%; vertical-align:top; background:#f5fffa;">
<tr>
<td style="padding:2px;">
<h2 id="mp-tfa-h2" style="margin:3px; background:#cef2e0; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3bfb1; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="From_today.27s_featured_article">From today's featured article</span></h2>
</td>
</tr>
<tr>
<td style="color:#000;">
<div id="mp-tfa" style="padding:2px 5px">
<div id="mp-tfa-img" style="float: left; margin: 0.5em 0.9em 0.4em 0em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 178px;"><a class="image" href="/wiki/File:CASR78atS11_(cropped).jpg" title="SR 78 in Oceanside at the El Camino Real overpass"><img alt="SR 78 in Oceanside at the El Camino Real overpass" data-file-height="1080" data-file-width="1920" height="100" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/25/CASR78atS11_%28cropped%29.jpg/178px-CASR78atS11_%28cropped%29.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/25/CASR78atS11_%28cropped%29.jpg/267px-CASR78atS11_%28cropped%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/25/CASR78atS11_%28cropped%29.jpg/356px-CASR78atS11_%28cropped%29.jpg 2x" width="178"/></a></div>
</div>
<p><b><a href="/wiki/California_State_Route_78" title="California State Route 78">State Route 78</a></b> is a <a href="/wiki/State_highway" title="State highway">state highway</a> in <a href="/wiki/California" title="California">California</a> that runs from <a href="/wiki/Oceanside,_California" title="Oceanside, California">Oceanside</a> east to <a href="/wiki/Blythe,_California" title="Blythe, California">Blythe</a>, a few miles from <a href="/wiki/Arizona" title="Arizona">Arizona</a>. Its western terminus is at <a class="mw-redirect" href="/wiki/Interstate_5_(California)" title="Interstate 5 (California)">Interstate 5</a> in <a href="/wiki/San_Diego_County,_California" title="San Diego County, California">San Diego County</a> and its eastern terminus is at <a class="mw-redirect" href="/wiki/Interstate_10_(California)" title="Interstate 10 (California)">Interstate 10</a> in <a href="/wiki/Riverside_County,_California" title="Riverside County, California">Riverside County</a>. The route is a freeway through the heavily populated cities of northern San Diego County and a two-lane highway running through the <a href="/wiki/Cuyamaca_Mountains" title="Cuyamaca Mountains">Cuyamaca Mountains</a> to <a href="/wiki/Julian,_California" title="Julian, California">Julian</a>. In <a href="/wiki/Imperial_County,_California" title="Imperial County, California">Imperial County</a>, it travels through the desert near the <a href="/wiki/Salton_Sea" title="Salton Sea">Salton Sea</a> and passes through the city of <a href="/wiki/Brawley,_California" title="Brawley, California">Brawley</a> before turning north into an area of sand dunes on the way to its terminus in Blythe. Portions of the route existed as early as 1900, and it was one of the original state highways designated in 1934. The freeway section in the <a class="mw-redirect" href="/wiki/San_Diego_North_County,_California" title="San Diego North County, California">North County</a> of <a href="/wiki/San_Diego" title="San Diego">San Diego</a> that connects Oceanside and <a href="/wiki/Escondido,_California" title="Escondido, California">Escondido</a> was built in the middle of the 20th century in several stages, including a transitory stage known as the Vista Way Freeway, and has been improved several times. An expressway bypass of the city of Brawley was completed in 2012. There are many projects slated to improve the freeway due to increasing congestion. (<a href="/wiki/California_State_Route_78" title="California State Route 78"><b>Full article...</b></a>)</p>
<ul style="list-style:none; margin-left:0; text-align:right;">
<li>Recently featured:
<div class="hlist inline">
<ul>
<li><i><a href="/wiki/Sarcoscypha_coccinea" title="Sarcoscypha coccinea">Sarcoscypha coccinea</a></i></li>
<li><a href="/wiki/Japanese_battleship_Asahi" title="Japanese battleship Asahi">Japanese battleship <i>Asahi</i></a></li>
<li><a href="/wiki/Isabella_Beeton" title="Isabella Beeton">Isabella Beeton</a></li>
</ul>
</div>
</li>
</ul>
<div class="hlist noprint" id="mp-tfa-footer" style="text-align: right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Today%27s_featured_article/March_2016" title="Wikipedia:Today's featured article/March 2016">Archive</a></b></li>
<li><b><a class="extiw" href="https://lists.wikimedia.org/mailman/listinfo/daily-article-l" title="mail:daily-article-l">By email</a></b></li>
<li><b><a href="/wiki/Wikipedia:Featured_articles" title="Wikipedia:Featured articles">More featured articles...</a></b></li>
</ul>
</div>
</div>
</td>
</tr>
<tr>
<td style="padding:2px;">
<h2 id="mp-dyk-h2" style="margin:3px; background:#cef2e0; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3bfb1; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="Did_you_know...">Did you know...</span></h2>
</td>
</tr>
<tr>
<td style="color:#000; padding:2px 5px 5px;">
<div id="mp-dyk">
<div id="mp-dyk-img" style="float:right; margin-left:0.5em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 120px;"><a class="image" href="/wiki/File:Bilikiss_Adebiyi_CEO.jpg" title="Bilikiss Adebiyi"><img alt="Bilikiss Adebiyi" data-file-height="500" data-file-width="447" height="133" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Bilikiss_Adebiyi_CEO.jpg/119px-Bilikiss_Adebiyi_CEO.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Bilikiss_Adebiyi_CEO.jpg/179px-Bilikiss_Adebiyi_CEO.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Bilikiss_Adebiyi_CEO.jpg/238px-Bilikiss_Adebiyi_CEO.jpg 2x" width="119"/></a>
<div class="thumbcaption" style="padding: 0.25em 0; word-wrap: break-word;">Bilikiss Adebiyi</div>
</div>
</div>
<ul>
<li>... that <b><a href="/wiki/Bilikiss_Adebiyi_Abiola" title="Bilikiss Adebiyi Abiola">Bilikiss Adebiyi</a></b> <i>(pictured)</i> planned to collect rubbish in the streets of Nigeria while taking her <a href="/wiki/Master_of_Business_Administration" title="Master of Business Administration">MBA</a> at <a href="/wiki/Massachusetts_Institute_of_Technology" title="Massachusetts Institute of Technology">MIT</a>?</li>
<li>... that the <a href="/wiki/BBC" title="BBC">BBC</a> re-launched its former television channel <a href="/wiki/BBC_Three_(former)" title="BBC Three (former)">BBC Three</a> as an <b><a href="/wiki/BBC_Three_(Internet_television)" title="BBC Three (Internet television)">Internet television service</a></b>?</li>
<li>... that the Sanskrit text <b><a href="/wiki/Manasollasa" title="Manasollasa">Manasollasa</a></b> is a 12th-century encyclopedia covering topics such as garden design, cuisine recipes, veterinary medicine, jewelry, painting, music, and dance?</li>
<li>... that the species name for <i><b><a href="/wiki/Burmaleon" title="Burmaleon">Burmaleon magnificus</a></b></i> was coined for the quality of preservation in the fossils?</li>
<li>... that the documentary film <i><b><a href="/wiki/No_Land%27s_Song" title="No Land's Song">No Land's Song</a></b></i> spotlights women's protests against an Iranian ban on public female solo singing before male audiences?</li>
<li>... that uninjured reporters commandeered a <a href="/wiki/Medical_evacuation" title="Medical evacuation">medical evacuation</a> helicopter during <b><a href="/wiki/Campaign_Z" title="Campaign Z">Campaign Z</a></b>?</li>
<li>... that of an estimated 100,000 <b><a href="/wiki/German_Jewish_military_personnel_of_World_War_I" title="German Jewish military personnel of World War I">German Jews</a></b> who served in the <a href="/wiki/German_Army_(German_Empire)" title="German Army (German Empire)">German Army</a> in <a href="/wiki/World_War_I" title="World War I">World War I</a>, 12,000 were killed in action?</li>
</ul>
<p><b>Correction</b>: we erroneously claimed here that in 1964 <a href="/wiki/Jim_Hazelton" title="Jim Hazelton">Jim Hazelton</a> was the first Australian to fly a single-engine aircraft across the Pacific, but <a href="/wiki/Charles_Kingsford_Smith" title="Charles Kingsford Smith">Charles Kingsford Smith</a> and copilot <a href="/wiki/Gordon_Taylor_(aviator)" title="Gordon Taylor (aviator)">Gordon Taylor</a> were actually the first to do so in 1934 in their <a href="/wiki/Lockheed_Altair" title="Lockheed Altair">Lockheed Altair</a> <i><a href="/wiki/Lady_Southern_Cross" title="Lady Southern Cross">Lady Southern Cross</a></i>.</p>
<div class="hlist noprint" id="mp-dyk-footer" style="text-align:right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Recent_additions" title="Wikipedia:Recent additions">Recently improved articles</a></b></li>
<li><b><a href="/wiki/Wikipedia:Your_first_article" title="Wikipedia:Your first article">Start a new article</a></b></li>
<li><b><a href="/wiki/Template_talk:Did_you_know" title="Template talk:Did you know">Nominate an article</a></b></li>
</ul>
</div>
</div>
</td>
</tr>
</table>
</td>
<td style="border:1px solid transparent;"></td>
<td class="MainPageBG" style="width:45%; border:1px solid #cedff2; background:#f5faff; vertical-align:top;">
<table id="mp-right" style="width:100%; vertical-align:top; background:#f5faff;">
<tr>
<td style="padding:2px;">
<h2 id="mp-itn-h2" style="margin:3px; background:#cedff2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="In_the_news">In the news</span></h2>
</td>
</tr>
<tr>
<td style="color:#000; padding:2px 5px;">
<div id="mp-itn">
<div id="mp-itn-img" style="float:right;margin-left:0.5em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 120px;"><a href="/wiki/File:Total_Solar_Eclipse,_9_March_2016,_from_Balikpapan,_East_Kalimantan,_Indonesia.JPG" title="Total solar eclipse, viewed from Balikpapan"><img alt="Total solar eclipse, viewed from Balikpapan" data-file-height="388" data-file-width="396" height="118" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG/120px-Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG/180px-Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG/240px-Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG 2x" width="120"/></a>
<div class="thumbcaption" style="padding: 0.25em 0; word-wrap: break-word;">Total solar eclipse, viewed from <a href="/wiki/Balikpapan" title="Balikpapan">Balikpapan</a></div>
</div>
</div>
<ul>
<li><b><a href="/wiki/March_2016_Ankara_bombing" title="March 2016 Ankara bombing">An explosion</a></b> in <a href="/wiki/Ankara" title="Ankara">Ankara</a>, Turkey, kills 37 people and injures at least 125 others.</li>
<li>At least 18 people are killed in <b><a href="/wiki/2016_Grand-Bassam_shootings" title="2016 Grand-Bassam shootings">shootings</a></b> at a beach resort in <a href="/wiki/Grand-Bassam" title="Grand-Bassam">Grand-Bassam</a>, Ivory Coast.</li>
<li><a href="/wiki/Google_DeepMind" title="Google DeepMind">Google DeepMind</a>'s <a href="/wiki/AlphaGo" title="AlphaGo">AlphaGo</a> computer program <b><a href="/wiki/AlphaGo_versus_Lee_Sedol" title="AlphaGo versus Lee Sedol">wins a series</a></b> against <a href="/wiki/Lee_Sedol" title="Lee Sedol">Lee Sedol</a>, one of the world's best <a href="/wiki/Go_(game)" title="Go (game)">Go</a> players.</li>
<li>A total <a href="/wiki/Solar_eclipse" title="Solar eclipse">solar eclipse</a> <b><a href="/wiki/Solar_eclipse_of_March_9,_2016" title="Solar eclipse of March 9, 2016">occurs</a></b>, with totality <i>(pictured)</i> visible from Indonesia and the North Pacific.</li>
<li>In the <b><a href="/wiki/Slovak_parliamentary_election,_2016" title="Slovak parliamentary election, 2016">Slovak parliamentary election</a></b>, <a href="/wiki/Direction_%E2%80%93_Social_Democracy" title="Direction – Social Democracy">Direction – Social Democracy</a> remains the largest political party but loses its majority in the <a href="/wiki/National_Council_(Slovakia)" title="National Council (Slovakia)">National Council</a>.</li>
<li>The <a href="/wiki/Human_Rights_Protection_Party" title="Human Rights Protection Party">Human Rights Protection Party</a>, led by <a href="/wiki/Tuilaepa_Aiono_Sailele_Malielegaoi" title="Tuilaepa Aiono Sailele Malielegaoi">Tuilaepa Aiono Sailele Malielegaoi</a>, wins a landslide victory in the <b><a href="/wiki/Samoan_general_election,_2016" title="Samoan general election, 2016">Samoan general election</a></b>.</li>
</ul>
<ul style="list-style:none; margin-left:0;">
<li><b><a href="/wiki/Portal:Current_events" title="Portal:Current events">Ongoing events</a></b>:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Zika_virus_outbreak_(2015%E2%80%93present)" title="Zika virus outbreak (2015–present)">Zika virus outbreak</a></li>
<li><a href="/wiki/European_migrant_crisis" title="European migrant crisis">European migrant crisis</a></li>
</ul>
</div>
</li>
<li><b><a href="/wiki/Deaths_in_2016" title="Deaths in 2016">Recent deaths</a></b>:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Hilary_Putnam" title="Hilary Putnam">Hilary Putnam</a></li>
<li><a href="/wiki/Lloyd_Shapley" title="Lloyd Shapley">Lloyd Shapley</a></li>
<li><a href="/wiki/Iolanda_Bala%C8%99" title="Iolanda Balaș">Iolanda Balaș</a></li>
</ul>
</div>
</li>
</ul>
</div>
</td>
</tr>
<tr>
<td style="padding:2px;">
<h2 id="mp-otd-h2" style="margin:3px; background:#cedff2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="On_this_day...">On this day...</span></h2>
</td>
</tr>
<tr>
<td style="color:#000; padding:2px 5px 5px;">
<div id="mp-otd">
<p><b><a href="/wiki/March_15" title="March 15">March 15</a></b>: <b><a href="/wiki/Ides_of_March" title="Ides of March">Ides of March</a></b>; <b><a href="/wiki/Hungarian_Revolution_of_1848" title="Hungarian Revolution of 1848">National Day</a></b> in Hungary (<a href="/wiki/1848" title="1848">1848</a>)</p>
<div id="mp-otd-img" style="float:right;margin-left:0.5em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 100px;"><a class="image" href="/wiki/File:Villa_close_up.jpg" title="Pancho Villa"><img alt="Pancho Villa" data-file-height="574" data-file-width="431" height="133" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/100px-Villa_close_up.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/150px-Villa_close_up.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/200px-Villa_close_up.jpg 2x" width="100"/></a>
<div class="thumbcaption" style="padding: 0.25em 0; word-wrap: break-word;">Pancho Villa</div>
</div>
</div>
<ul>
<li><a href="/wiki/1783" title="1783">1783</a> – A <b><a href="/wiki/Newburgh_Conspiracy" title="Newburgh Conspiracy">potential uprising</a></b> in <a href="/wiki/Newburgh_(city),_New_York" title="Newburgh (city), New York">Newburgh, New York</a>, was defused when <a href="/wiki/George_Washington" title="George Washington">George Washington</a> asked <a href="/wiki/Continental_Army" title="Continental Army">Continental Army</a> officers to support the supremacy of <a href="/wiki/United_States_Congress" title="United States Congress">Congress</a>.</li>
<li><a href="/wiki/1892" title="1892">1892</a> – <b><a href="/wiki/Liverpool_F.C." title="Liverpool F.C.">Liverpool F.C.</a></b>, one of England's most successful <a href="/wiki/Association_football" title="Association football">football</a> clubs, was founded.</li>
<li><a href="/wiki/1916" title="1916">1916</a> – Six days after <a href="/wiki/Pancho_Villa" title="Pancho Villa">Pancho Villa</a> <i>(pictured)</i> and his cross-border raiders attacked <a href="/wiki/Columbus,_New_Mexico" title="Columbus, New Mexico">Columbus, New Mexico</a>, US General <a href="/wiki/John_J._Pershing" title="John J. Pershing">John J. Pershing</a> led a <b><a href="/wiki/Pancho_Villa_Expedition" title="Pancho Villa Expedition">punitive expedition into Mexico</a></b> to pursue Villa.</li>
<li><a href="/wiki/1941" title="1941">1941</a> – <b><a href="/wiki/Philippine_Airlines" title="Philippine Airlines">Philippine Airlines</a></b>, the <a href="/wiki/Flag_carrier" title="Flag carrier">flag carrier</a> of the Philippines took its first flight, making it the oldest commercial airline in Asia operating under its original name.</li>
<li><a href="/wiki/2011" title="2011">2011</a> – <a href="/wiki/Arab_Spring" title="Arab Spring">Arab Spring</a>: Protests erupted <b><a href="/wiki/Syrian_Civil_War" title="Syrian Civil War">across Syria</a></b> against the authoritarian government.</li>
</ul>
<ul style="list-style:none; margin-left:0;">
<li>More anniversaries:
<div class="hlist inline nowraplinks">
<ul>
<li><a href="/wiki/March_14" title="March 14">March 14</a></li>
<li><b><a href="/wiki/March_15" title="March 15">March 15</a></b></li>
<li><a href="/wiki/March_16" title="March 16">March 16</a></li>
</ul>
</div>
</li>
</ul>
<div class="hlist noprint" id="mp-otd-footer" style="text-align: right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Selected_anniversaries/March" title="Wikipedia:Selected anniversaries/March">Archive</a></b></li>
<li><b><a class="extiw" href="https://lists.wikimedia.org/mailman/listinfo/daily-article-l" title="mail:daily-article-l">By email</a></b></li>
<li><b><a href="/wiki/List_of_historical_anniversaries" title="List of historical anniversaries">List of historical anniversaries</a></b></li>
</ul>
<div style="font-size:smaller;">
<ul>
<li>Current date: <span class="nowrap">March 15, 2016</span> (<a href="/wiki/Coordinated_Universal_Time" title="Coordinated Universal Time">UTC</a>)</li>
<li><span class="plainlinks" id="otd-purgelink"><span class="nowrap"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Main_Page&amp;action=purge">Reload this page</a></span></span></li>
</ul>
</div>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<img alt="SR 78 in Oceanside at the El Camino Real overpass" data-file-height="1080" data-file-width="1920" height="100" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/25/CASR78atS11_%28cropped%29.jpg/178px-CASR78atS11_%28cropped%29.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/25/CASR78atS11_%28cropped%29.jpg/267px-CASR78atS11_%28cropped%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/25/CASR78atS11_%28cropped%29.jpg/356px-CASR78atS11_%28cropped%29.jpg 2x" width="178"/>
<a href="/wiki/State_highway" title="State highway">state highway</a>
<a href="/wiki/California" title="California">California</a>
<a href="/wiki/Oceanside,_California" title="Oceanside, California">Oceanside</a>
<a href="/wiki/Blythe,_California" title="Blythe, California">Blythe</a>
<a href="/wiki/Arizona" title="Arizona">Arizona</a>
<a class="mw-redirect" href="/wiki/Interstate_5_(California)" title="Interstate 5 (California)">Interstate 5</a>
<a href="/wiki/San_Diego_County,_California" title="San Diego County, California">San Diego County</a>
<a class="mw-redirect" href="/wiki/Interstate_10_(California)" title="Interstate 10 (California)">Interstate 10</a>
<a href="/wiki/Riverside_County,_California" title="Riverside County, California">Riverside County</a>
<a href="/wiki/Cuyamaca_Mountains" title="Cuyamaca Mountains">Cuyamaca Mountains</a>
<a href="/wiki/Julian,_California" title="Julian, California">Julian</a>
<a href="/wiki/Imperial_County,_California" title="Imperial County, California">Imperial County</a>
<a href="/wiki/Salton_Sea" title="Salton Sea">Salton Sea</a>
<a href="/wiki/Brawley,_California" title="Brawley, California">Brawley</a>
<a class="mw-redirect" href="/wiki/San_Diego_North_County,_California" title="San Diego North County, California">North County</a>
<a href="/wiki/San_Diego" title="San Diego">San Diego</a>
<a href="/wiki/Escondido,_California" title="Escondido, California">Escondido</a>
<a href="/wiki/California_State_Route_78" title="California State Route 78"><b>Full article...</b></a>
<b>Full article...</b>
<li><a href="/wiki/Japanese_battleship_Asahi" title="Japanese battleship Asahi">Japanese battleship <i>Asahi</i></a></li>
<i>Asahi</i>
<div class="hlist noprint" id="mp-tfa-footer" style="text-align: right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Today%27s_featured_article/March_2016" title="Wikipedia:Today's featured article/March 2016">Archive</a></b></li>
<li><b><a class="extiw" href="https://lists.wikimedia.org/mailman/listinfo/daily-article-l" title="mail:daily-article-l">By email</a></b></li>
<li><b><a href="/wiki/Wikipedia:Featured_articles" title="Wikipedia:Featured articles">More featured articles...</a></b></li>
</ul>
</div>
<li><b><a class="extiw" href="https://lists.wikimedia.org/mailman/listinfo/daily-article-l" title="mail:daily-article-l">By email</a></b></li>
<li><b><a href="/wiki/Wikipedia:Featured_articles" title="Wikipedia:Featured articles">More featured articles...</a></b></li>
<tr>
<td style="padding:2px;">
<h2 id="mp-dyk-h2" style="margin:3px; background:#cef2e0; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3bfb1; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="Did_you_know...">Did you know...</span></h2>
</td>
</tr>
<img alt="Bilikiss Adebiyi" data-file-height="500" data-file-width="447" height="133" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Bilikiss_Adebiyi_CEO.jpg/119px-Bilikiss_Adebiyi_CEO.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Bilikiss_Adebiyi_CEO.jpg/179px-Bilikiss_Adebiyi_CEO.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Bilikiss_Adebiyi_CEO.jpg/238px-Bilikiss_Adebiyi_CEO.jpg 2x" width="119"/>
<i>(pictured)</i>
<a href="/wiki/Massachusetts_Institute_of_Technology" title="Massachusetts Institute of Technology">MIT</a>
<li>... that the <a href="/wiki/BBC" title="BBC">BBC</a> re-launched its former television channel <a href="/wiki/BBC_Three_(former)" title="BBC Three (former)">BBC Three</a> as an <b><a href="/wiki/BBC_Three_(Internet_television)" title="BBC Three (Internet television)">Internet television service</a></b>?</li>
<a href="/wiki/BBC_Three_(former)" title="BBC Three (former)">BBC Three</a>
<b><a href="/wiki/BBC_Three_(Internet_television)" title="BBC Three (Internet television)">Internet television service</a></b>
<li>... that the Sanskrit text <b><a href="/wiki/Manasollasa" title="Manasollasa">Manasollasa</a></b> is a 12th-century encyclopedia covering topics such as garden design, cuisine recipes, veterinary medicine, jewelry, painting, music, and dance?</li>
<li>... that the species name for <i><b><a href="/wiki/Burmaleon" title="Burmaleon">Burmaleon magnificus</a></b></i> was coined for the quality of preservation in the fossils?</li>
<li>... that the documentary film <i><b><a href="/wiki/No_Land%27s_Song" title="No Land's Song">No Land's Song</a></b></i> spotlights women's protests against an Iranian ban on public female solo singing before male audiences?</li>
<li>... that uninjured reporters commandeered a <a href="/wiki/Medical_evacuation" title="Medical evacuation">medical evacuation</a> helicopter during <b><a href="/wiki/Campaign_Z" title="Campaign Z">Campaign Z</a></b>?</li>
<b><a href="/wiki/Campaign_Z" title="Campaign Z">Campaign Z</a></b>
<li>... that of an estimated 100,000 <b><a href="/wiki/German_Jewish_military_personnel_of_World_War_I" title="German Jewish military personnel of World War I">German Jews</a></b> who served in the <a href="/wiki/German_Army_(German_Empire)" title="German Army (German Empire)">German Army</a> in <a href="/wiki/World_War_I" title="World War I">World War I</a>, 12,000 were killed in action?</li>
<a href="/wiki/German_Army_(German_Empire)" title="German Army (German Empire)">German Army</a>
<a href="/wiki/World_War_I" title="World War I">World War I</a>
<p><b>Correction</b>: we erroneously claimed here that in 1964 <a href="/wiki/Jim_Hazelton" title="Jim Hazelton">Jim Hazelton</a> was the first Australian to fly a single-engine aircraft across the Pacific, but <a href="/wiki/Charles_Kingsford_Smith" title="Charles Kingsford Smith">Charles Kingsford Smith</a> and copilot <a href="/wiki/Gordon_Taylor_(aviator)" title="Gordon Taylor (aviator)">Gordon Taylor</a> were actually the first to do so in 1934 in their <a href="/wiki/Lockheed_Altair" title="Lockheed Altair">Lockheed Altair</a> <i><a href="/wiki/Lady_Southern_Cross" title="Lady Southern Cross">Lady Southern Cross</a></i>.</p>
<a href="/wiki/Charles_Kingsford_Smith" title="Charles Kingsford Smith">Charles Kingsford Smith</a>
<a href="/wiki/Gordon_Taylor_(aviator)" title="Gordon Taylor (aviator)">Gordon Taylor</a>
<a href="/wiki/Lockheed_Altair" title="Lockheed Altair">Lockheed Altair</a>
<i><a href="/wiki/Lady_Southern_Cross" title="Lady Southern Cross">Lady Southern Cross</a></i>
<div class="hlist noprint" id="mp-dyk-footer" style="text-align:right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Recent_additions" title="Wikipedia:Recent additions">Recently improved articles</a></b></li>
<li><b><a href="/wiki/Wikipedia:Your_first_article" title="Wikipedia:Your first article">Start a new article</a></b></li>
<li><b><a href="/wiki/Template_talk:Did_you_know" title="Template talk:Did you know">Nominate an article</a></b></li>
</ul>
</div>
<li><b><a href="/wiki/Wikipedia:Your_first_article" title="Wikipedia:Your first article">Start a new article</a></b></li>
<li><b><a href="/wiki/Template_talk:Did_you_know" title="Template talk:Did you know">Nominate an article</a></b></li>
<td style="border:1px solid transparent;"></td>
<img alt="Total solar eclipse, viewed from Balikpapan" data-file-height="388" data-file-width="396" height="118" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG/120px-Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG/180px-Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG/240px-Total_Solar_Eclipse%2C_9_March_2016%2C_from_Balikpapan%2C_East_Kalimantan%2C_Indonesia_%28cropped%29.JPG 2x" width="120"/>
<ul>
<li><b><a href="/wiki/March_2016_Ankara_bombing" title="March 2016 Ankara bombing">An explosion</a></b> in <a href="/wiki/Ankara" title="Ankara">Ankara</a>, Turkey, kills 37 people and injures at least 125 others.</li>
<li>At least 18 people are killed in <b><a href="/wiki/2016_Grand-Bassam_shootings" title="2016 Grand-Bassam shootings">shootings</a></b> at a beach resort in <a href="/wiki/Grand-Bassam" title="Grand-Bassam">Grand-Bassam</a>, Ivory Coast.</li>
<li><a href="/wiki/Google_DeepMind" title="Google DeepMind">Google DeepMind</a>'s <a href="/wiki/AlphaGo" title="AlphaGo">AlphaGo</a> computer program <b><a href="/wiki/AlphaGo_versus_Lee_Sedol" title="AlphaGo versus Lee Sedol">wins a series</a></b> against <a href="/wiki/Lee_Sedol" title="Lee Sedol">Lee Sedol</a>, one of the world's best <a href="/wiki/Go_(game)" title="Go (game)">Go</a> players.</li>
<li>A total <a href="/wiki/Solar_eclipse" title="Solar eclipse">solar eclipse</a> <b><a href="/wiki/Solar_eclipse_of_March_9,_2016" title="Solar eclipse of March 9, 2016">occurs</a></b>, with totality <i>(pictured)</i> visible from Indonesia and the North Pacific.</li>
<li>In the <b><a href="/wiki/Slovak_parliamentary_election,_2016" title="Slovak parliamentary election, 2016">Slovak parliamentary election</a></b>, <a href="/wiki/Direction_%E2%80%93_Social_Democracy" title="Direction – Social Democracy">Direction – Social Democracy</a> remains the largest political party but loses its majority in the <a href="/wiki/National_Council_(Slovakia)" title="National Council (Slovakia)">National Council</a>.</li>
<li>The <a href="/wiki/Human_Rights_Protection_Party" title="Human Rights Protection Party">Human Rights Protection Party</a>, led by <a href="/wiki/Tuilaepa_Aiono_Sailele_Malielegaoi" title="Tuilaepa Aiono Sailele Malielegaoi">Tuilaepa Aiono Sailele Malielegaoi</a>, wins a landslide victory in the <b><a href="/wiki/Samoan_general_election,_2016" title="Samoan general election, 2016">Samoan general election</a></b>.</li>
</ul>
<a href="/wiki/Ankara" title="Ankara">Ankara</a>
<li>At least 18 people are killed in <b><a href="/wiki/2016_Grand-Bassam_shootings" title="2016 Grand-Bassam shootings">shootings</a></b> at a beach resort in <a href="/wiki/Grand-Bassam" title="Grand-Bassam">Grand-Bassam</a>, Ivory Coast.</li>
<a href="/wiki/Grand-Bassam" title="Grand-Bassam">Grand-Bassam</a>
<li><a href="/wiki/Google_DeepMind" title="Google DeepMind">Google DeepMind</a>'s <a href="/wiki/AlphaGo" title="AlphaGo">AlphaGo</a> computer program <b><a href="/wiki/AlphaGo_versus_Lee_Sedol" title="AlphaGo versus Lee Sedol">wins a series</a></b> against <a href="/wiki/Lee_Sedol" title="Lee Sedol">Lee Sedol</a>, one of the world's best <a href="/wiki/Go_(game)" title="Go (game)">Go</a> players.</li>
<a href="/wiki/AlphaGo" title="AlphaGo">AlphaGo</a>
<b><a href="/wiki/AlphaGo_versus_Lee_Sedol" title="AlphaGo versus Lee Sedol">wins a series</a></b>
<a href="/wiki/Lee_Sedol" title="Lee Sedol">Lee Sedol</a>
<a href="/wiki/Go_(game)" title="Go (game)">Go</a>
<li>A total <a href="/wiki/Solar_eclipse" title="Solar eclipse">solar eclipse</a> <b><a href="/wiki/Solar_eclipse_of_March_9,_2016" title="Solar eclipse of March 9, 2016">occurs</a></b>, with totality <i>(pictured)</i> visible from Indonesia and the North Pacific.</li>
<b><a href="/wiki/Solar_eclipse_of_March_9,_2016" title="Solar eclipse of March 9, 2016">occurs</a></b>
<i>(pictured)</i>
<a href="/wiki/Direction_%E2%80%93_Social_Democracy" title="Direction – Social Democracy">Direction – Social Democracy</a>
<a href="/wiki/National_Council_(Slovakia)" title="National Council (Slovakia)">National Council</a>
<li>The <a href="/wiki/Human_Rights_Protection_Party" title="Human Rights Protection Party">Human Rights Protection Party</a>, led by <a href="/wiki/Tuilaepa_Aiono_Sailele_Malielegaoi" title="Tuilaepa Aiono Sailele Malielegaoi">Tuilaepa Aiono Sailele Malielegaoi</a>, wins a landslide victory in the <b><a href="/wiki/Samoan_general_election,_2016" title="Samoan general election, 2016">Samoan general election</a></b>.</li>
<a href="/wiki/Tuilaepa_Aiono_Sailele_Malielegaoi" title="Tuilaepa Aiono Sailele Malielegaoi">Tuilaepa Aiono Sailele Malielegaoi</a>
<b><a href="/wiki/Samoan_general_election,_2016" title="Samoan general election, 2016">Samoan general election</a></b>
<ul style="list-style:none; margin-left:0;">
<li><b><a href="/wiki/Portal:Current_events" title="Portal:Current events">Ongoing events</a></b>:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Zika_virus_outbreak_(2015%E2%80%93present)" title="Zika virus outbreak (2015–present)">Zika virus outbreak</a></li>
<li><a href="/wiki/European_migrant_crisis" title="European migrant crisis">European migrant crisis</a></li>
</ul>
</div>
</li>
<li><b><a href="/wiki/Deaths_in_2016" title="Deaths in 2016">Recent deaths</a></b>:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Hilary_Putnam" title="Hilary Putnam">Hilary Putnam</a></li>
<li><a href="/wiki/Lloyd_Shapley" title="Lloyd Shapley">Lloyd Shapley</a></li>
<li><a href="/wiki/Iolanda_Bala%C8%99" title="Iolanda Balaș">Iolanda Balaș</a></li>
</ul>
</div>
</li>
</ul>
<div class="hlist inline">
<ul>
<li><a href="/wiki/Zika_virus_outbreak_(2015%E2%80%93present)" title="Zika virus outbreak (2015–present)">Zika virus outbreak</a></li>
<li><a href="/wiki/European_migrant_crisis" title="European migrant crisis">European migrant crisis</a></li>
</ul>
</div>
<li><a href="/wiki/European_migrant_crisis" title="European migrant crisis">European migrant crisis</a></li>
<li><b><a href="/wiki/Deaths_in_2016" title="Deaths in 2016">Recent deaths</a></b>:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Hilary_Putnam" title="Hilary Putnam">Hilary Putnam</a></li>
<li><a href="/wiki/Lloyd_Shapley" title="Lloyd Shapley">Lloyd Shapley</a></li>
<li><a href="/wiki/Iolanda_Bala%C8%99" title="Iolanda Balaș">Iolanda Balaș</a></li>
</ul>
</div>
</li>
<div class="hlist inline">
<ul>
<li><a href="/wiki/Hilary_Putnam" title="Hilary Putnam">Hilary Putnam</a></li>
<li><a href="/wiki/Lloyd_Shapley" title="Lloyd Shapley">Lloyd Shapley</a></li>
<li><a href="/wiki/Iolanda_Bala%C8%99" title="Iolanda Balaș">Iolanda Balaș</a></li>
</ul>
</div>
<li><a href="/wiki/Lloyd_Shapley" title="Lloyd Shapley">Lloyd Shapley</a></li>
<li><a href="/wiki/Iolanda_Bala%C8%99" title="Iolanda Balaș">Iolanda Balaș</a></li>
<tr>
<td style="padding:2px;">
<h2 id="mp-otd-h2" style="margin:3px; background:#cedff2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; text-align:left; color:#000; padding:0.2em 0.4em;"><span class="mw-headline" id="On_this_day...">On this day...</span></h2>
</td>
</tr>
<b><a href="/wiki/Ides_of_March" title="Ides of March">Ides of March</a></b>
<b><a href="/wiki/Hungarian_Revolution_of_1848" title="Hungarian Revolution of 1848">National Day</a></b>
<a href="/wiki/1848" title="1848">1848</a>
<div id="mp-otd-img" style="float:right;margin-left:0.5em;">
<div class="thumbinner mp-thumb" style="background: transparent; border: none; padding: 0; max-width: 100px;"><a class="image" href="/wiki/File:Villa_close_up.jpg" title="Pancho Villa"><img alt="Pancho Villa" data-file-height="574" data-file-width="431" height="133" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/100px-Villa_close_up.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/150px-Villa_close_up.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/200px-Villa_close_up.jpg 2x" width="100"/></a>
<div class="thumbcaption" style="padding: 0.25em 0; word-wrap: break-word;">Pancho Villa</div>
</div>
</div>
<img alt="Pancho Villa" data-file-height="574" data-file-width="431" height="133" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/100px-Villa_close_up.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/150px-Villa_close_up.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/10/Villa_close_up.jpg/200px-Villa_close_up.jpg 2x" width="100"/>
<b><a href="/wiki/Newburgh_Conspiracy" title="Newburgh Conspiracy">potential uprising</a></b>
<a href="/wiki/Newburgh_(city),_New_York" title="Newburgh (city), New York">Newburgh, New York</a>
<a href="/wiki/George_Washington" title="George Washington">George Washington</a>
<a href="/wiki/Continental_Army" title="Continental Army">Continental Army</a>
<a href="/wiki/United_States_Congress" title="United States Congress">Congress</a>
<li><a href="/wiki/1892" title="1892">1892</a> – <b><a href="/wiki/Liverpool_F.C." title="Liverpool F.C.">Liverpool F.C.</a></b>, one of England's most successful <a href="/wiki/Association_football" title="Association football">football</a> clubs, was founded.</li>
<b><a href="/wiki/Liverpool_F.C." title="Liverpool F.C.">Liverpool F.C.</a></b>
<a href="/wiki/Association_football" title="Association football">football</a>
<li><a href="/wiki/1916" title="1916">1916</a> – Six days after <a href="/wiki/Pancho_Villa" title="Pancho Villa">Pancho Villa</a> <i>(pictured)</i> and his cross-border raiders attacked <a href="/wiki/Columbus,_New_Mexico" title="Columbus, New Mexico">Columbus, New Mexico</a>, US General <a href="/wiki/John_J._Pershing" title="John J. Pershing">John J. Pershing</a> led a <b><a href="/wiki/Pancho_Villa_Expedition" title="Pancho Villa Expedition">punitive expedition into Mexico</a></b> to pursue Villa.</li>
<a href="/wiki/Pancho_Villa" title="Pancho Villa">Pancho Villa</a>
<i>(pictured)</i>
<a href="/wiki/John_J._Pershing" title="John J. Pershing">John J. Pershing</a>
<b><a href="/wiki/Pancho_Villa_Expedition" title="Pancho Villa Expedition">punitive expedition into Mexico</a></b>
<li><a href="/wiki/1941" title="1941">1941</a> – <b><a href="/wiki/Philippine_Airlines" title="Philippine Airlines">Philippine Airlines</a></b>, the <a href="/wiki/Flag_carrier" title="Flag carrier">flag carrier</a> of the Philippines took its first flight, making it the oldest commercial airline in Asia operating under its original name.</li>
<b><a href="/wiki/Philippine_Airlines" title="Philippine Airlines">Philippine Airlines</a></b>
<a href="/wiki/Flag_carrier" title="Flag carrier">flag carrier</a>
<li><a href="/wiki/2011" title="2011">2011</a> – <a href="/wiki/Arab_Spring" title="Arab Spring">Arab Spring</a>: Protests erupted <b><a href="/wiki/Syrian_Civil_War" title="Syrian Civil War">across Syria</a></b> against the authoritarian government.</li>
<a href="/wiki/Arab_Spring" title="Arab Spring">Arab Spring</a>
<b><a href="/wiki/Syrian_Civil_War" title="Syrian Civil War">across Syria</a></b>
<ul style="list-style:none; margin-left:0;">
<li>More anniversaries:
<div class="hlist inline nowraplinks">
<ul>
<li><a href="/wiki/March_14" title="March 14">March 14</a></li>
<li><b><a href="/wiki/March_15" title="March 15">March 15</a></b></li>
<li><a href="/wiki/March_16" title="March 16">March 16</a></li>
</ul>
</div>
</li>
</ul>
<li><b><a href="/wiki/March_15" title="March 15">March 15</a></b></li>
<li><a href="/wiki/March_16" title="March 16">March 16</a></li>
<div class="hlist noprint" id="mp-otd-footer" style="text-align: right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Selected_anniversaries/March" title="Wikipedia:Selected anniversaries/March">Archive</a></b></li>
<li><b><a class="extiw" href="https://lists.wikimedia.org/mailman/listinfo/daily-article-l" title="mail:daily-article-l">By email</a></b></li>
<li><b><a href="/wiki/List_of_historical_anniversaries" title="List of historical anniversaries">List of historical anniversaries</a></b></li>
</ul>
<div style="font-size:smaller;">
<ul>
<li>Current date: <span class="nowrap">March 15, 2016</span> (<a href="/wiki/Coordinated_Universal_Time" title="Coordinated Universal Time">UTC</a>)</li>
<li><span class="plainlinks" id="otd-purgelink"><span class="nowrap"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Main_Page&amp;action=purge">Reload this page</a></span></span></li>
</ul>
</div>
</div>
<li><b><a class="extiw" href="https://lists.wikimedia.org/mailman/listinfo/daily-article-l" title="mail:daily-article-l">By email</a></b></li>
<li><b><a href="/wiki/List_of_historical_anniversaries" title="List of historical anniversaries">List of historical anniversaries</a></b></li>
<div style="font-size:smaller;">
<ul>
<li>Current date: <span class="nowrap">March 15, 2016</span> (<a href="/wiki/Coordinated_Universal_Time" title="Coordinated Universal Time">UTC</a>)</li>
<li><span class="plainlinks" id="otd-purgelink"><span class="nowrap"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Main_Page&amp;action=purge">Reload this page</a></span></span></li>
</ul>
</div>
<li><span class="plainlinks" id="otd-purgelink"><span class="nowrap"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Main_Page&amp;action=purge">Reload this page</a></span></span></li>
<table id="mp-lower" style="margin:4px 0 0 0; width:100%; background:none; border-spacing: 0px;">
<tr>
<td class="MainPageBG" style="width:100%; border:1px solid #ddcef2; background:#faf5ff; vertical-align:top; color:#000;">
<table id="mp-bottom" style="width:100%; vertical-align:top; background:#faf5ff; color:#000;">
<tr>
<td style="padding:2px;">
<h2 id="mp-tfp-h2" style="margin:3px; background:#ddcef2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #afa3bf; text-align:left; color:#000; padding:0.2em 0.4em"><span class="mw-headline" id="Today.27s_featured_picture">Today's featured picture</span></h2>
</td>
</tr>
<tr>
<td style="color:#000; padding:2px;">
<div id="mp-tfp">
<table style="margin:0 3px 3px; width:100%; text-align:left; background-color:transparent; border-collapse: collapse;">
<tr>
<td style="padding:0 0.9em 0 0;"><a class="image" href="/wiki/File:Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg" title="Man sweeping volcanic ash"><img alt="Man sweeping volcanic ash" data-file-height="1524" data-file-width="2246" height="258" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg/380px-Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg/570px-Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg/760px-Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg 2x" width="380"/></a></td>
<td style="padding:0 6px 0 0">
<p>A man sweeping <a href="/wiki/Volcanic_ash" title="Volcanic ash">volcanic ash</a> in <a href="/wiki/Yogyakarta" title="Yogyakarta">Yogyakarta</a> during the <b><a href="/wiki/Kelud#2014_eruption" title="Kelud">2014 eruption</a></b> of <a href="/wiki/Kelud" title="Kelud">Kelud</a>. The <a href="/wiki/East_Java" title="East Java">East Javan</a> volcano erupted on 13 February 2014 and sent volcanic ash covering an area of about 500 kilometres (310 mi) in diameter. Ashfall from the eruption "paralyzed Java", closing airports, tourist attractions, and businesses as far away as <a href="/wiki/Bandung" title="Bandung">Bandung</a> and causing millions of dollars in financial losses. Cleaning operations continued for more than a week.</p>
<p><small>Photograph: <a href="/wiki/User:Crisco_1492" title="User:Crisco 1492">Chris Woodrich</a></small></p>
<ul style="list-style:none; margin-left:0; text-align:right;">
<li>Recently featured:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Template:POTD/2016-03-14" title="Template:POTD/2016-03-14"><i>Homme au bain</i></a></li>
<li><a href="/wiki/Template:POTD/2016-03-13" title="Template:POTD/2016-03-13">Wagner VI projection</a></li>
<li><a href="/wiki/Template:POTD/2016-03-12" title="Template:POTD/2016-03-12">Lynx (constellation)</a></li>
</ul>
</div>
</li>
</ul>
<div class="hlist noprint" style="text-align:right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Picture_of_the_day/March_2016" title="Wikipedia:Picture of the day/March 2016">Archive</a></b></li>
<li><b><a href="/wiki/Wikipedia:Featured_pictures" title="Wikipedia:Featured pictures">More featured pictures...</a></b></li>
</ul>
</div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<img alt="Man sweeping volcanic ash" data-file-height="1524" data-file-width="2246" height="258" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg/380px-Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg/570px-Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg/760px-Ash_in_Yogyakarta_during_the_2014_eruption_of_Kelud_01.jpg 2x" width="380"/>
<a href="/wiki/Yogyakarta" title="Yogyakarta">Yogyakarta</a>
<b><a href="/wiki/Kelud#2014_eruption" title="Kelud">2014 eruption</a></b>
<a href="/wiki/Kelud" title="Kelud">Kelud</a>
<a href="/wiki/East_Java" title="East Java">East Javan</a>
<a href="/wiki/Bandung" title="Bandung">Bandung</a>
<p><small>Photograph: <a href="/wiki/User:Crisco_1492" title="User:Crisco 1492">Chris Woodrich</a></small></p>
<ul style="list-style:none; margin-left:0; text-align:right;">
<li>Recently featured:
<div class="hlist inline">
<ul>
<li><a href="/wiki/Template:POTD/2016-03-14" title="Template:POTD/2016-03-14"><i>Homme au bain</i></a></li>
<li><a href="/wiki/Template:POTD/2016-03-13" title="Template:POTD/2016-03-13">Wagner VI projection</a></li>
<li><a href="/wiki/Template:POTD/2016-03-12" title="Template:POTD/2016-03-12">Lynx (constellation)</a></li>
</ul>
</div>
</li>
</ul>
<i>Homme au bain</i>
<li><a href="/wiki/Template:POTD/2016-03-12" title="Template:POTD/2016-03-12">Lynx (constellation)</a></li>
<div class="hlist noprint" style="text-align:right;">
<ul>
<li><b><a href="/wiki/Wikipedia:Picture_of_the_day/March_2016" title="Wikipedia:Picture of the day/March 2016">Archive</a></b></li>
<li><b><a href="/wiki/Wikipedia:Featured_pictures" title="Wikipedia:Featured pictures">More featured pictures...</a></b></li>
</ul>
</div>
<li><b><a href="/wiki/Wikipedia:Featured_pictures" title="Wikipedia:Featured pictures">More featured pictures...</a></b></li>
<div id="mp-other" style="padding-top:4px; padding-bottom:2px;">
<h2><span class="mw-headline" id="Other_areas_of_Wikipedia">Other areas of Wikipedia</span></h2>
<ul>
<li><b><a href="/wiki/Wikipedia:Community_portal" title="Wikipedia:Community portal">Community portal</a></b> – Bulletin board, projects, resources and activities covering a wide range of Wikipedia areas.</li>
<li><b><a href="/wiki/Wikipedia:Help_desk" title="Wikipedia:Help desk">Help desk</a></b> – Ask questions about using Wikipedia.</li>
<li><b><a href="/wiki/Wikipedia:Local_Embassy" title="Wikipedia:Local Embassy">Local embassy</a></b> – For Wikipedia-related communication in languages other than English.</li>
<li><b><a href="/wiki/Wikipedia:Reference_desk" title="Wikipedia:Reference desk">Reference desk</a></b> – Serving as virtual librarians, Wikipedia volunteers tackle your questions on a wide range of subjects.</li>
<li><b><a href="/wiki/Wikipedia:News" title="Wikipedia:News">Site news</a></b> – Announcements, updates, articles and press releases on Wikipedia and the Wikimedia Foundation.</li>
<li><b><a href="/wiki/Wikipedia:Village_pump" title="Wikipedia:Village pump">Village pump</a></b> – For discussions about Wikipedia itself, including areas for technical issues and policies.</li>
</ul>
</div>
<li><b><a href="/wiki/Wikipedia:Help_desk" title="Wikipedia:Help desk">Help desk</a></b> – Ask questions about using Wikipedia.</li>
<li><b><a href="/wiki/Wikipedia:Local_Embassy" title="Wikipedia:Local Embassy">Local embassy</a></b> – For Wikipedia-related communication in languages other than English.</li>
<li><b><a href="/wiki/Wikipedia:Reference_desk" title="Wikipedia:Reference desk">Reference desk</a></b> – Serving as virtual librarians, Wikipedia volunteers tackle your questions on a wide range of subjects.</li>
<li><b><a href="/wiki/Wikipedia:News" title="Wikipedia:News">Site news</a></b> – Announcements, updates, articles and press releases on Wikipedia and the Wikimedia Foundation.</li>
<li><b><a href="/wiki/Wikipedia:Village_pump" title="Wikipedia:Village pump">Village pump</a></b> – For discussions about Wikipedia itself, including areas for technical issues and policies.</li>
<div id="mp-sister">
<h2><span class="mw-headline" id="Wikipedia.27s_sister_projects">Wikipedia's sister projects</span></h2>
<p>Wikipedia is hosted by the <a href="/wiki/Wikimedia_Foundation" title="Wikimedia Foundation">Wikimedia Foundation</a>, a non-profit organization that also hosts a range of other <a class="extiw" href="//wikimediafoundation.org/wiki/Our_projects" title="wmf:Our projects">projects</a>:</p>
<table class="layout plainlinks" style="width:100%; margin:auto; text-align:left; background:transparent;">
<tr>
<td style="text-align:center; padding:4px;"><a href="//commons.wikimedia.org/wiki/" title="Commons"><img alt="Commons" data-file-height="41" data-file-width="31" height="41" src="//upload.wikimedia.org/wikipedia/en/9/9d/Commons-logo-31px.png" width="31"/></a></td>
<td style="width:33%; padding:4px;"><b><a class="external text" href="//commons.wikimedia.org/">Commons</a></b><br/>
Free media repository</td>
<td style="text-align:center; padding:4px;"><a href="//www.mediawiki.org/wiki/" title="MediaWiki"><img alt="MediaWiki" data-file-height="102" data-file-width="135" height="26" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/35px-Mediawiki-logo.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/53px-Mediawiki-logo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/70px-Mediawiki-logo.png 2x" width="35"/></a></td>
<td style="width:33%; padding:4px;"><b><a class="external text" href="//mediawiki.org/">MediaWiki</a></b><br/>
Wiki software development</td>
<td style="text-align:center; padding:4px;"><a href="//meta.wikimedia.org/wiki/" title="Meta-Wiki"><img alt="Meta-Wiki" data-file-height="35" data-file-width="35" height="35" src="//upload.wikimedia.org/wikipedia/en/b/bc/Meta-logo-35px.png" width="35"/></a></td>
<td style="width:33%; padding:4px;"><b><a class="external text" href="//meta.wikimedia.org/">Meta-Wiki</a></b><br/>
Wikimedia project coordination</td>
</tr>
<tr>
<td style="text-align:center; padding:4px;"><a href="//en.wikibooks.org/wiki/" title="Wikibooks"><img alt="Wikibooks" data-file-height="35" data-file-width="35" height="35" src="//upload.wikimedia.org/wikipedia/en/7/7f/Wikibooks-logo-35px.png" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikibooks.org/">Wikibooks</a></b><br/>
Free textbooks and manuals</td>
<td style="text-align:center; padding:3px;"><a href="//www.wikidata.org/wiki/" title="Wikidata"><img alt="Wikidata" data-file-height="590" data-file-width="1050" height="26" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/47px-Wikidata-logo.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/71px-Wikidata-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/94px-Wikidata-logo.svg.png 2x" width="47"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//www.wikidata.org/">Wikidata</a></b><br/>
Free knowledge base</td>
<td style="text-align:center; padding:4px;"><a href="//en.wikinews.org/wiki/" title="Wikinews"><img alt="Wikinews" data-file-height="30" data-file-width="51" height="30" src="//upload.wikimedia.org/wikipedia/en/6/60/Wikinews-logo-51px.png" width="51"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikinews.org/">Wikinews</a></b><br/>
Free-content news</td>
</tr>
<tr>
<td style="text-align:center; padding:4px;"><a href="//en.wikiquote.org/wiki/" title="Wikiquote"><img alt="Wikiquote" data-file-height="41" data-file-width="51" height="41" src="//upload.wikimedia.org/wikipedia/en/4/46/Wikiquote-logo-51px.png" width="51"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikiquote.org/">Wikiquote</a></b><br/>
Collection of quotations</td>
<td style="text-align:center; padding:4px;"><a href="//en.wikisource.org/wiki/" title="Wikisource"><img alt="Wikisource" data-file-height="37" data-file-width="35" height="37" src="//upload.wikimedia.org/wikipedia/en/b/b6/Wikisource-logo-35px.png" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikisource.org/">Wikisource</a></b><br/>
Free-content library</td>
<td style="text-align:center; padding:4px;"><a href="//species.wikimedia.org/wiki/" title="Wikispecies"><img alt="Wikispecies" data-file-height="41" data-file-width="35" height="41" src="//upload.wikimedia.org/wikipedia/en/b/bf/Wikispecies-logo-35px.png" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//species.wikimedia.org/">Wikispecies</a></b><br/>
Directory of species</td>
</tr>
<tr>
<td style="text-align:center; padding:4px;"><a href="//en.wikiversity.org/wiki/" title="Wikiversity"><img alt="Wikiversity" data-file-height="32" data-file-width="41" height="32" src="//upload.wikimedia.org/wikipedia/en/e/e3/Wikiversity-logo-41px.png" width="41"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikiversity.org/">Wikiversity</a></b><br/>
Free learning materials and activities</td>
<td style="text-align:center; padding:4px;"><a href="//en.wikivoyage.org/wiki/" title="Wikivoyage"><img alt="Wikivoyage" data-file-height="193" data-file-width="193" height="35" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/35px-Wikivoyage-Logo-v3-icon.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/53px-Wikivoyage-Logo-v3-icon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/70px-Wikivoyage-Logo-v3-icon.svg.png 2x" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikivoyage.org/">Wikivoyage</a></b><br/>
Free travel guide</td>
<td style="text-align:center; padding:4px;"><a href="//en.wiktionary.org/wiki/" title="Wiktionary"><img alt="Wiktionary" data-file-height="35" data-file-width="51" height="35" src="//upload.wikimedia.org/wikipedia/en/f/f2/Wiktionary-logo-51px.png" width="51"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wiktionary.org/">Wiktionary</a></b><br/>
Dictionary and thesaurus</td>
</tr>
</table>
</div>
<a class="extiw" href="//wikimediafoundation.org/wiki/Our_projects" title="wmf:Our projects">projects</a>
<table class="layout plainlinks" style="width:100%; margin:auto; text-align:left; background:transparent;">
<tr>
<td style="text-align:center; padding:4px;"><a href="//commons.wikimedia.org/wiki/" title="Commons"><img alt="Commons" data-file-height="41" data-file-width="31" height="41" src="//upload.wikimedia.org/wikipedia/en/9/9d/Commons-logo-31px.png" width="31"/></a></td>
<td style="width:33%; padding:4px;"><b><a class="external text" href="//commons.wikimedia.org/">Commons</a></b><br/>
Free media repository</td>
<td style="text-align:center; padding:4px;"><a href="//www.mediawiki.org/wiki/" title="MediaWiki"><img alt="MediaWiki" data-file-height="102" data-file-width="135" height="26" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/35px-Mediawiki-logo.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/53px-Mediawiki-logo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/70px-Mediawiki-logo.png 2x" width="35"/></a></td>
<td style="width:33%; padding:4px;"><b><a class="external text" href="//mediawiki.org/">MediaWiki</a></b><br/>
Wiki software development</td>
<td style="text-align:center; padding:4px;"><a href="//meta.wikimedia.org/wiki/" title="Meta-Wiki"><img alt="Meta-Wiki" data-file-height="35" data-file-width="35" height="35" src="//upload.wikimedia.org/wikipedia/en/b/bc/Meta-logo-35px.png" width="35"/></a></td>
<td style="width:33%; padding:4px;"><b><a class="external text" href="//meta.wikimedia.org/">Meta-Wiki</a></b><br/>
Wikimedia project coordination</td>
</tr>
<tr>
<td style="text-align:center; padding:4px;"><a href="//en.wikibooks.org/wiki/" title="Wikibooks"><img alt="Wikibooks" data-file-height="35" data-file-width="35" height="35" src="//upload.wikimedia.org/wikipedia/en/7/7f/Wikibooks-logo-35px.png" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikibooks.org/">Wikibooks</a></b><br/>
Free textbooks and manuals</td>
<td style="text-align:center; padding:3px;"><a href="//www.wikidata.org/wiki/" title="Wikidata"><img alt="Wikidata" data-file-height="590" data-file-width="1050" height="26" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/47px-Wikidata-logo.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/71px-Wikidata-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/94px-Wikidata-logo.svg.png 2x" width="47"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//www.wikidata.org/">Wikidata</a></b><br/>
Free knowledge base</td>
<td style="text-align:center; padding:4px;"><a href="//en.wikinews.org/wiki/" title="Wikinews"><img alt="Wikinews" data-file-height="30" data-file-width="51" height="30" src="//upload.wikimedia.org/wikipedia/en/6/60/Wikinews-logo-51px.png" width="51"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikinews.org/">Wikinews</a></b><br/>
Free-content news</td>
</tr>
<tr>
<td style="text-align:center; padding:4px;"><a href="//en.wikiquote.org/wiki/" title="Wikiquote"><img alt="Wikiquote" data-file-height="41" data-file-width="51" height="41" src="//upload.wikimedia.org/wikipedia/en/4/46/Wikiquote-logo-51px.png" width="51"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikiquote.org/">Wikiquote</a></b><br/>
Collection of quotations</td>
<td style="text-align:center; padding:4px;"><a href="//en.wikisource.org/wiki/" title="Wikisource"><img alt="Wikisource" data-file-height="37" data-file-width="35" height="37" src="//upload.wikimedia.org/wikipedia/en/b/b6/Wikisource-logo-35px.png" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikisource.org/">Wikisource</a></b><br/>
Free-content library</td>
<td style="text-align:center; padding:4px;"><a href="//species.wikimedia.org/wiki/" title="Wikispecies"><img alt="Wikispecies" data-file-height="41" data-file-width="35" height="41" src="//upload.wikimedia.org/wikipedia/en/b/bf/Wikispecies-logo-35px.png" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//species.wikimedia.org/">Wikispecies</a></b><br/>
Directory of species</td>
</tr>
<tr>
<td style="text-align:center; padding:4px;"><a href="//en.wikiversity.org/wiki/" title="Wikiversity"><img alt="Wikiversity" data-file-height="32" data-file-width="41" height="32" src="//upload.wikimedia.org/wikipedia/en/e/e3/Wikiversity-logo-41px.png" width="41"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikiversity.org/">Wikiversity</a></b><br/>
Free learning materials and activities</td>
<td style="text-align:center; padding:4px;"><a href="//en.wikivoyage.org/wiki/" title="Wikivoyage"><img alt="Wikivoyage" data-file-height="193" data-file-width="193" height="35" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/35px-Wikivoyage-Logo-v3-icon.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/53px-Wikivoyage-Logo-v3-icon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/70px-Wikivoyage-Logo-v3-icon.svg.png 2x" width="35"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wikivoyage.org/">Wikivoyage</a></b><br/>
Free travel guide</td>
<td style="text-align:center; padding:4px;"><a href="//en.wiktionary.org/wiki/" title="Wiktionary"><img alt="Wiktionary" data-file-height="35" data-file-width="51" height="35" src="//upload.wikimedia.org/wikipedia/en/f/f2/Wiktionary-logo-51px.png" width="51"/></a></td>
<td style="padding:4px;"><b><a class="external text" href="//en.wiktionary.org/">Wiktionary</a></b><br/>
Dictionary and thesaurus</td>
</tr>
</table>
<img alt="Commons" data-file-height="41" data-file-width="31" height="41" src="//upload.wikimedia.org/wikipedia/en/9/9d/Commons-logo-31px.png" width="31"/>
<br/>
<img alt="MediaWiki" data-file-height="102" data-file-width="135" height="26" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/35px-Mediawiki-logo.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/53px-Mediawiki-logo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/70px-Mediawiki-logo.png 2x" width="35"/>
<br/>
<img alt="Meta-Wiki" data-file-height="35" data-file-width="35" height="35" src="//upload.wikimedia.org/wikipedia/en/b/bc/Meta-logo-35px.png" width="35"/>
<br/>
<img alt="Wikibooks" data-file-height="35" data-file-width="35" height="35" src="//upload.wikimedia.org/wikipedia/en/7/7f/Wikibooks-logo-35px.png" width="35"/>
<br/>
<img alt="Wikidata" data-file-height="590" data-file-width="1050" height="26" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/47px-Wikidata-logo.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/71px-Wikidata-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/94px-Wikidata-logo.svg.png 2x" width="47"/>
<br/>
<img alt="Wikinews" data-file-height="30" data-file-width="51" height="30" src="//upload.wikimedia.org/wikipedia/en/6/60/Wikinews-logo-51px.png" width="51"/>
<br/>
<img alt="Wikiquote" data-file-height="41" data-file-width="51" height="41" src="//upload.wikimedia.org/wikipedia/en/4/46/Wikiquote-logo-51px.png" width="51"/>
<br/>
<img alt="Wikisource" data-file-height="37" data-file-width="35" height="37" src="//upload.wikimedia.org/wikipedia/en/b/b6/Wikisource-logo-35px.png" width="35"/>
<br/>
<img alt="Wikispecies" data-file-height="41" data-file-width="35" height="41" src="//upload.wikimedia.org/wikipedia/en/b/bf/Wikispecies-logo-35px.png" width="35"/>
<br/>
<img alt="Wikiversity" data-file-height="32" data-file-width="41" height="32" src="//upload.wikimedia.org/wikipedia/en/e/e3/Wikiversity-logo-41px.png" width="41"/>
<br/>
<img alt="Wikivoyage" data-file-height="193" data-file-width="193" height="35" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/35px-Wikivoyage-Logo-v3-icon.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/53px-Wikivoyage-Logo-v3-icon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/70px-Wikivoyage-Logo-v3-icon.svg.png 2x" width="35"/>
<br/>
<img alt="Wiktionary" data-file-height="35" data-file-width="51" height="35" src="//upload.wikimedia.org/wikipedia/en/f/f2/Wiktionary-logo-51px.png" width="51"/>
<br/>
<span style="display:none"> (<span class="bday dtstart published updated">2001</span>)</span>
<ul>
<li id="lang-3">More than 1,000,000 articles:
<div class="hlist inline">
<ul>
<li><a class="external text" href="//de.wikipedia.org/wiki/"><span class="autonym" lang="de" title="German (de:)" xml:lang="de">Deutsch</span></a></li>
<li><a class="external text" href="//es.wikipedia.org/wiki/"><span class="autonym" lang="es" title="Spanish (es:)" xml:lang="es">Español</span></a></li>
<li><a class="external text" href="//fr.wikipedia.org/wiki/"><span class="autonym" lang="fr" title="French (fr:)" xml:lang="fr">Français</span></a></li>
<li><a class="external text" href="//it.wikipedia.org/wiki/"><span class="autonym" lang="it" title="Italian (it:)" xml:lang="it">Italiano</span></a></li>
<li><a class="external text" href="//nl.wikipedia.org/wiki/"><span class="autonym" lang="nl" title="Dutch (nl:)" xml:lang="nl">Nederlands</span></a></li>
<li><a class="external text" href="//ja.wikipedia.org/wiki/"><span class="autonym" lang="ja" title="Japanese (ja:)" xml:lang="ja">日本語</span></a></li>
<li><a class="external text" href="//pl.wikipedia.org/wiki/"><span class="autonym" lang="pl" title="Polish (pl:)" xml:lang="pl">Polski</span></a></li>
<li><a class="external text" href="//ru.wikipedia.org/wiki/"><span class="autonym" lang="ru" title="Russian (ru:)" xml:lang="ru">Русский</span></a></li>
<li><a class="external text" href="//sv.wikipedia.org/wiki/"><span class="autonym" lang="sv" title="Swedish (sv:)" xml:lang="sv">Svenska</span></a></li>
<li><a class="external text" href="//vi.wikipedia.org/wiki/"><span class="autonym" lang="vi" title="Vietnamese (vi:)" xml:lang="vi">Tiếng Việt</span></a></li>
</ul>
</div>
</li>
<li id="lang-2">More than 250,000 articles:
<div class="hlist inline">
<ul>
<li><a class="external text" href="//ar.wikipedia.org/wiki/"><span class="autonym" lang="ar" title="Arabic (ar:)" xml:lang="ar">العربية</span></a></li>
<li><a class="external text" href="//id.wikipedia.org/wiki/"><span class="autonym" lang="id" title="Indonesian (id:)" xml:lang="id">Bahasa Indonesia</span></a></li>
<li><a class="external text" href="//ms.wikipedia.org/wiki/"><span class="autonym" lang="ms" title="Malay (ms:)" xml:lang="ms">Bahasa Melayu</span></a></li>
<li><a class="external text" href="//ca.wikipedia.org/wiki/"><span class="autonym" lang="ca" title="Catalan (ca:)" xml:lang="ca">Català</span></a></li>
<li><a class="external text" href="//cs.wikipedia.org/wiki/"><span class="autonym" lang="cs" title="Czech (cs:)" xml:lang="cs">Čeština</span></a></li>
<li><a class="external text" href="//fa.wikipedia.org/wiki/"><span class="autonym" lang="fa" title="Persian (fa:)" xml:lang="fa">فارسی</span></a></li>
<li><a class="external text" href="//ko.wikipedia.org/wiki/"><span class="autonym" lang="ko" title="Korean (ko:)" xml:lang="ko">한국어</span></a></li>
<li><a class="external text" href="//hu.wikipedia.org/wiki/"><span class="autonym" lang="hu" title="Hungarian (hu:)" xml:lang="hu">Magyar</span></a></li>
<li><a class="external text" href="//no.wikipedia.org/wiki/"><span class="autonym" lang="no" title="Norwegian (no:)" xml:lang="no">Norsk bokmål</span></a></li>
<li><a class="external text" href="//pt.wikipedia.org/wiki/"><span class="autonym" lang="pt" title="Portuguese (pt:)" xml:lang="pt">Português</span></a></li>
<li><a class="external text" href="//ro.wikipedia.org/wiki/"><span class="autonym" lang="ro" title="Romanian (ro:)" xml:lang="ro">Română</span></a></li>
<li><a class="external text" href="//sr.wikipedia.org/wiki/"><span class="autonym" lang="sr" title="Serbian (sr:)" xml:lang="sr">Srpski / српски</span></a></li>
<li><a class="external text" href="//sh.wikipedia.org/wiki/"><span class="autonym" lang="sh" title="Serbo-Croatian (sh:)" xml:lang="sh">Srpskohrvatski / српскохрватски</span></a></li>
<li><a class="external text" href="//fi.wikipedia.org/wiki/"><span class="autonym" lang="fi" title="Finnish (fi:)" xml:lang="fi">Suomi</span></a></li>
<li><a class="external text" href="//tr.wikipedia.org/wiki/"><span class="autonym" lang="tr" title="Turkish (tr:)" xml:lang="tr">Türkçe</span></a></li>
<li><a class="external text" href="//uk.wikipedia.org/wiki/"><span class="autonym" lang="uk" title="Ukrainian (uk:)" xml:lang="uk">Українська</span></a></li>
<li><a class="external text" href="//zh.wikipedia.org/wiki/"><span class="autonym" lang="zh" title="Chinese (zh:)" xml:lang="zh">中文</span></a></li>
</ul>
</div>
</li>
<li id="lang-1">More than 50,000 articles:
<div class="hlist inline">
<ul>
<li><a class="external text" href="//bs.wikipedia.org/wiki/"><span class="autonym" lang="bs" title="Bosnian (bs:)" xml:lang="bs">Bosanski</span></a></li>
<li><a class="external text" href="//bg.wikipedia.org/wiki/"><span class="autonym" lang="bg" title="Bulgarian (bg:)" xml:lang="bg">Български</span></a></li>
<li><a class="external text" href="//da.wikipedia.org/wiki/"><span class="autonym" lang="da" title="Danish (da:)" xml:lang="da">Dansk</span></a></li>
<li><a class="external text" href="//et.wikipedia.org/wiki/"><span class="autonym" lang="et" title="Estonian (et:)" xml:lang="et">Eesti</span></a></li>
<li><a class="external text" href="//el.wikipedia.org/wiki/"><span class="autonym" lang="el" title="Greek (el:)" xml:lang="el">Ελληνικά</span></a></li>
<li><a class="external text" href="//simple.wikipedia.org/wiki/"><span class="autonym" lang="simple" title="Simple English (simple:)" xml:lang="simple">English (simple)</span></a></li>
<li><a class="external text" href="//eo.wikipedia.org/wiki/"><span class="autonym" lang="eo" title="Esperanto (eo:)" xml:lang="eo">Esperanto</span></a></li>
<li><a class="external text" href="//eu.wikipedia.org/wiki/"><span class="autonym" lang="eu" title="Basque (eu:)" xml:lang="eu">Euskara</span></a></li>
<li><a class="external text" href="//gl.wikipedia.org/wiki/"><span class="autonym" lang="gl" title="Galician (gl:)" xml:lang="gl">Galego</span></a></li>
<li><a class="external text" href="//he.wikipedia.org/wiki/"><span class="autonym" lang="he" title="Hebrew (he:)" xml:lang="he">עברית</span></a></li>
<li><a class="external text" href="//hr.wikipedia.org/wiki/"><span class="autonym" lang="hr" title="Croatian (hr:)" xml:lang="hr">Hrvatski</span></a></li>
<li><a class="external text" href="//lv.wikipedia.org/wiki/"><span class="autonym" lang="lv" title="Latvian (lv:)" xml:lang="lv">Latviešu</span></a></li>
<li><a class="external text" href="//lt.wikipedia.org/wiki/"><span class="autonym" lang="lt" title="Lithuanian (lt:)" xml:lang="lt">Lietuvių</span></a></li>
<li><a class="external text" href="//nn.wikipedia.org/wiki/"><span class="autonym" lang="nn" title="Norwegian Nynorsk (nn:)" xml:lang="nn">Norsk nynorsk</span></a></li>
<li><a class="external text" href="//sk.wikipedia.org/wiki/"><span class="autonym" lang="sk" title="Slovak (sk:)" xml:lang="sk">Slovenčina</span></a></li>
<li><a class="external text" href="//sl.wikipedia.org/wiki/"><span class="autonym" lang="sl" title="Slovenian (sl:)" xml:lang="sl">Slovenščina</span></a></li>
<li><a class="external text" href="//th.wikipedia.org/wiki/"><span class="autonym" lang="th" title="Thai (th:)" xml:lang="th">ไทย</span></a></li>
</ul>
</div>
</li>
</ul>
<span class="autonym" lang="de" title="German (de:)" xml:lang="de">Deutsch</span>
<span class="autonym" lang="es" title="Spanish (es:)" xml:lang="es">Español</span>
<span class="autonym" lang="fr" title="French (fr:)" xml:lang="fr">Français</span>
<span class="autonym" lang="it" title="Italian (it:)" xml:lang="it">Italiano</span>
<span class="autonym" lang="nl" title="Dutch (nl:)" xml:lang="nl">Nederlands</span>
<span class="autonym" lang="ja" title="Japanese (ja:)" xml:lang="ja">日本語</span>
<span class="autonym" lang="pl" title="Polish (pl:)" xml:lang="pl">Polski</span>
<span class="autonym" lang="ru" title="Russian (ru:)" xml:lang="ru">Русский</span>
<span class="autonym" lang="sv" title="Swedish (sv:)" xml:lang="sv">Svenska</span>
<span class="autonym" lang="vi" title="Vietnamese (vi:)" xml:lang="vi">Tiếng Việt</span>
<span class="autonym" lang="ar" title="Arabic (ar:)" xml:lang="ar">العربية</span>
<span class="autonym" lang="id" title="Indonesian (id:)" xml:lang="id">Bahasa Indonesia</span>
<span class="autonym" lang="ms" title="Malay (ms:)" xml:lang="ms">Bahasa Melayu</span>
<span class="autonym" lang="ca" title="Catalan (ca:)" xml:lang="ca">Català</span>
<span class="autonym" lang="cs" title="Czech (cs:)" xml:lang="cs">Čeština</span>
<span class="autonym" lang="fa" title="Persian (fa:)" xml:lang="fa">فارسی</span>
<span class="autonym" lang="ko" title="Korean (ko:)" xml:lang="ko">한국어</span>
<span class="autonym" lang="hu" title="Hungarian (hu:)" xml:lang="hu">Magyar</span>
<span class="autonym" lang="no" title="Norwegian (no:)" xml:lang="no">Norsk bokmål</span>
<span class="autonym" lang="pt" title="Portuguese (pt:)" xml:lang="pt">Português</span>
<span class="autonym" lang="ro" title="Romanian (ro:)" xml:lang="ro">Română</span>
<span class="autonym" lang="sr" title="Serbian (sr:)" xml:lang="sr">Srpski / српски</span>
<span class="autonym" lang="sh" title="Serbo-Croatian (sh:)" xml:lang="sh">Srpskohrvatski / српскохрватски</span>
<span class="autonym" lang="fi" title="Finnish (fi:)" xml:lang="fi">Suomi</span>
<span class="autonym" lang="tr" title="Turkish (tr:)" xml:lang="tr">Türkçe</span>
<span class="autonym" lang="uk" title="Ukrainian (uk:)" xml:lang="uk">Українська</span>
<span class="autonym" lang="zh" title="Chinese (zh:)" xml:lang="zh">中文</span>
<span class="autonym" lang="bs" title="Bosnian (bs:)" xml:lang="bs">Bosanski</span>
<span class="autonym" lang="bg" title="Bulgarian (bg:)" xml:lang="bg">Български</span>
<span class="autonym" lang="da" title="Danish (da:)" xml:lang="da">Dansk</span>
<span class="autonym" lang="et" title="Estonian (et:)" xml:lang="et">Eesti</span>
<span class="autonym" lang="el" title="Greek (el:)" xml:lang="el">Ελληνικά</span>
<span class="autonym" lang="simple" title="Simple English (simple:)" xml:lang="simple">English (simple)</span>
<span class="autonym" lang="eo" title="Esperanto (eo:)" xml:lang="eo">Esperanto</span>
<span class="autonym" lang="eu" title="Basque (eu:)" xml:lang="eu">Euskara</span>
<span class="autonym" lang="gl" title="Galician (gl:)" xml:lang="gl">Galego</span>
<span class="autonym" lang="he" title="Hebrew (he:)" xml:lang="he">עברית</span>
<span class="autonym" lang="hr" title="Croatian (hr:)" xml:lang="hr">Hrvatski</span>
<span class="autonym" lang="lv" title="Latvian (lv:)" xml:lang="lv">Latviešu</span>
<span class="autonym" lang="lt" title="Lithuanian (lt:)" xml:lang="lt">Lietuvių</span>
<span class="autonym" lang="nn" title="Norwegian Nynorsk (nn:)" xml:lang="nn">Norsk nynorsk</span>
<span class="autonym" lang="sk" title="Slovak (sk:)" xml:lang="sk">Slovenčina</span>
<span class="autonym" lang="sl" title="Slovenian (sl:)" xml:lang="sl">Slovenščina</span>
<span class="autonym" lang="th" title="Thai (th:)" xml:lang="th">ไทย</span>
<noscript><img alt="" height="1" src="//en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" style="border: none; position: absolute;" title="" width="1"/></noscript>
<div class="catlinks catlinks-allhidden" data-mw="interface" id="catlinks"></div>
<li id="pt-anoncontribs"><a accesskey="y" href="/wiki/Special:MyContributions" title="A list of edits made from this IP address [y]">Contributions</a></li>
<li id="pt-createaccount"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Main+Page&amp;type=signup" title="You are encouraged to create an account and log in; however, it is not mandatory">Create account</a></li>
<li id="pt-login"><a accesskey="o" href="/w/index.php?title=Special:UserLogin&amp;returnto=Main+Page" title="You're encouraged to log in; however, it's not mandatory. [o]">Log in</a></li>
<div id="left-navigation">
<div aria-labelledby="p-namespaces-label" class="vectorTabs" id="p-namespaces" role="navigation">
<h3 id="p-namespaces-label">Namespaces</h3>
<ul>
<li class="selected" id="ca-nstab-main"><span><a accesskey="c" href="/wiki/Main_Page" title="View the content page [c]">Main Page</a></span></li>
<li id="ca-talk"><span><a accesskey="t" href="/wiki/Talk:Main_Page" rel="discussion" title="Discussion about the content page [t]">Talk</a></span></li>
</ul>
</div>
<div aria-labelledby="p-variants-label" class="vectorMenu emptyPortlet" id="p-variants" role="navigation">
<h3 id="p-variants-label">
<span>Variants</span><a href="#"></a>
</h3>
<div class="menu">
<ul>
</ul>
</div>
</div>
</div>
<li id="ca-talk"><span><a accesskey="t" href="/wiki/Talk:Main_Page" rel="discussion" title="Discussion about the content page [t]">Talk</a></span></li>
<div aria-labelledby="p-variants-label" class="vectorMenu emptyPortlet" id="p-variants" role="navigation">
<h3 id="p-variants-label">
<span>Variants</span><a href="#"></a>
</h3>
<div class="menu">
<ul>
</ul>
</div>
</div>
<div class="menu">
<ul>
</ul>
</div>
<li id="ca-viewsource"><span><a accesskey="e" href="/w/index.php?title=Main_Page&amp;action=edit" title="This page is protected.
You can view its source [e]">View source</a></span></li>
<li class="collapsible" id="ca-history"><span><a accesskey="h" href="/w/index.php?title=Main_Page&amp;action=history" title="Past revisions of this page [h]">View history</a></span></li>
<div aria-labelledby="p-cactions-label" class="vectorMenu emptyPortlet" id="p-cactions" role="navigation">
<h3 id="p-cactions-label"><span>More</span><a href="#"></a></h3>
<div class="menu">
<ul>
</ul>
</div>
</div>
<div class="menu">
<ul>
</ul>
</div>
<div aria-labelledby="p-navigation-label" class="portal" id="p-navigation" role="navigation">
<h3 id="p-navigation-label">Navigation</h3>
<div class="body">
<ul>
<li id="n-mainpage-description"><a accesskey="z" href="/wiki/Main_Page" title="Visit the main page [z]">Main page</a></li><li id="n-contents"><a href="/wiki/Portal:Contents" title="Guides to browsing Wikipedia">Contents</a></li><li id="n-featuredcontent"><a href="/wiki/Portal:Featured_content" title="Featured content – the best of Wikipedia">Featured content</a></li><li id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Find background information on current events">Current events</a></li><li id="n-randompage"><a accesskey="x" href="/wiki/Special:Random" title="Load a random article [x]">Random article</a></li><li id="n-sitesupport"><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&amp;utm_medium=sidebar&amp;utm_campaign=C13_en.wikipedia.org&amp;uselang=en" title="Support us">Donate to Wikipedia</a></li><li id="n-shoplink"><a href="//shop.wikimedia.org" title="Visit the Wikipedia store">Wikipedia store</a></li> </ul>
</div>
</div>
<li id="n-contents"><a href="/wiki/Portal:Contents" title="Guides to browsing Wikipedia">Contents</a></li>
<li id="n-featuredcontent"><a href="/wiki/Portal:Featured_content" title="Featured content – the best of Wikipedia">Featured content</a></li>
<li id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Find background information on current events">Current events</a></li>
<li id="n-randompage"><a accesskey="x" href="/wiki/Special:Random" title="Load a random article [x]">Random article</a></li>
<li id="n-sitesupport"><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&amp;utm_medium=sidebar&amp;utm_campaign=C13_en.wikipedia.org&amp;uselang=en" title="Support us">Donate to Wikipedia</a></li>
<li id="n-shoplink"><a href="//shop.wikimedia.org" title="Visit the Wikipedia store">Wikipedia store</a></li>
<div aria-labelledby="p-interaction-label" class="portal" id="p-interaction" role="navigation">
<h3 id="p-interaction-label">Interaction</h3>
<div class="body">
<ul>
<li id="n-help"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">Help</a></li><li id="n-aboutsite"><a href="/wiki/Wikipedia:About" title="Find out about Wikipedia">About Wikipedia</a></li><li id="n-portal"><a href="/wiki/Wikipedia:Community_portal" title="About the project, what you can do, where to find things">Community portal</a></li><li id="n-recentchanges"><a accesskey="r" href="/wiki/Special:RecentChanges" title="A list of recent changes in the wiki [r]">Recent changes</a></li><li id="n-contactpage"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia">Contact page</a></li> </ul>
</div>
</div>
<li id="n-aboutsite"><a href="/wiki/Wikipedia:About" title="Find out about Wikipedia">About Wikipedia</a></li>
<li id="n-portal"><a href="/wiki/Wikipedia:Community_portal" title="About the project, what you can do, where to find things">Community portal</a></li>
<li id="n-recentchanges"><a accesskey="r" href="/wiki/Special:RecentChanges" title="A list of recent changes in the wiki [r]">Recent changes</a></li>
<li id="n-contactpage"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia">Contact page</a></li>
<div aria-labelledby="p-tb-label" class="portal" id="p-tb" role="navigation">
<h3 id="p-tb-label">Tools</h3>
<div class="body">
<ul>
<li id="t-whatlinkshere"><a accesskey="j" href="/wiki/Special:WhatLinksHere/Main_Page" title="List of all English Wikipedia pages containing links to this page [j]">What links here</a></li><li id="t-recentchangeslinked"><a accesskey="k" href="/wiki/Special:RecentChangesLinked/Main_Page" title="Recent changes in pages linked from this page [k]">Related changes</a></li><li id="t-upload"><a accesskey="u" href="/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]">Upload file</a></li><li id="t-specialpages"><a accesskey="q" href="/wiki/Special:SpecialPages" title="A list of all special pages [q]">Special pages</a></li><li id="t-permalink"><a href="/w/index.php?title=Main_Page&amp;oldid=696846920" title="Permanent link to this revision of the page">Permanent link</a></li><li id="t-info"><a href="/w/index.php?title=Main_Page&amp;action=info" title="More information about this page">Page information</a></li><li id="t-wikibase"><a accesskey="g" href="//www.wikidata.org/wiki/Q5296" title="Link to connected data repository item [g]">Wikidata item</a></li><li id="t-cite"><a href="/w/index.php?title=Special:CiteThisPage&amp;page=Main_Page&amp;id=696846920" title="Information on how to cite this page">Cite this page</a></li> </ul>
</div>
</div>
<li id="t-recentchangeslinked"><a accesskey="k" href="/wiki/Special:RecentChangesLinked/Main_Page" title="Recent changes in pages linked from this page [k]">Related changes</a></li>
<li id="t-upload"><a accesskey="u" href="/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]">Upload file</a></li>
<li id="t-specialpages"><a accesskey="q" href="/wiki/Special:SpecialPages" title="A list of all special pages [q]">Special pages</a></li>
<li id="t-permalink"><a href="/w/index.php?title=Main_Page&amp;oldid=696846920" title="Permanent link to this revision of the page">Permanent link</a></li>
<li id="t-info"><a href="/w/index.php?title=Main_Page&amp;action=info" title="More information about this page">Page information</a></li>
<li id="t-wikibase"><a accesskey="g" href="//www.wikidata.org/wiki/Q5296" title="Link to connected data repository item [g]">Wikidata item</a></li>
<li id="t-cite"><a href="/w/index.php?title=Special:CiteThisPage&amp;page=Main_Page&amp;id=696846920" title="Information on how to cite this page">Cite this page</a></li>
<div aria-labelledby="p-coll-print_export-label" class="portal" id="p-coll-print_export" role="navigation">
<h3 id="p-coll-print_export-label">Print/export</h3>
<div class="body">
<ul>
<li id="coll-create_a_book"><a href="/w/index.php?title=Special:Book&amp;bookcmd=book_creator&amp;referer=Main+Page">Create a book</a></li><li id="coll-download-as-rdf2latex"><a href="/w/index.php?title=Special:Book&amp;bookcmd=render_article&amp;arttitle=Main+Page&amp;returnto=Main+Page&amp;oldid=696846920&amp;writer=rdf2latex">Download as PDF</a></li><li id="t-print"><a accesskey="p" href="/w/index.php?title=Main_Page&amp;printable=yes" title="Printable version of this page [p]">Printable version</a></li> </ul>
</div>
</div>
<li id="coll-download-as-rdf2latex"><a href="/w/index.php?title=Special:Book&amp;bookcmd=render_article&amp;arttitle=Main+Page&amp;returnto=Main+Page&amp;oldid=696846920&amp;writer=rdf2latex">Download as PDF</a></li>
<li id="t-print"><a accesskey="p" href="/w/index.php?title=Main_Page&amp;printable=yes" title="Printable version of this page [p]">Printable version</a></li>
<div aria-labelledby="p-wikibase-otherprojects-label" class="portal" id="p-wikibase-otherprojects" role="navigation">
<h3 id="p-wikibase-otherprojects-label">In other projects</h3>
<div class="body">
<ul>
<li class="wb-otherproject-link wb-otherproject-commons"><a href="https://commons.wikimedia.org/wiki/Main_Page" hreflang="en">Wikimedia Commons</a></li><li class="wb-otherproject-link wb-otherproject-meta"><a href="https://meta.wikimedia.org/wiki/Main_Page" hreflang="en">Meta-Wiki</a></li><li class="wb-otherproject-link wb-otherproject-species"><a href="https://species.wikimedia.org/wiki/Main_Page" hreflang="en">Wikispecies</a></li><li class="wb-otherproject-link wb-otherproject-wikibooks"><a href="https://en.wikibooks.org/wiki/Main_Page" hreflang="en">Wikibooks</a></li><li class="wb-otherproject-link wb-otherproject-wikidata"><a href="https://www.wikidata.org/wiki/Wikidata:Main_Page" hreflang="en">Wikidata</a></li><li class="wb-otherproject-link wb-otherproject-wikinews"><a href="https://en.wikinews.org/wiki/Main_Page" hreflang="en">Wikinews</a></li><li class="wb-otherproject-link wb-otherproject-wikiquote"><a href="https://en.wikiquote.org/wiki/Main_Page" hreflang="en">Wikiquote</a></li><li class="wb-otherproject-link wb-otherproject-wikisource"><a href="https://en.wikisource.org/wiki/Main_Page" hreflang="en">Wikisource</a></li><li class="wb-otherproject-link wb-otherproject-wikiversity"><a href="https://en.wikiversity.org/wiki/Wikiversity:Main_Page" hreflang="en">Wikiversity</a></li><li class="wb-otherproject-link wb-otherproject-wikivoyage"><a href="https://en.wikivoyage.org/wiki/Main_Page" hreflang="en">Wikivoyage</a></li> </ul>
</div>
</div>
<li class="wb-otherproject-link wb-otherproject-meta"><a href="https://meta.wikimedia.org/wiki/Main_Page" hreflang="en">Meta-Wiki</a></li>
<li class="wb-otherproject-link wb-otherproject-species"><a href="https://species.wikimedia.org/wiki/Main_Page" hreflang="en">Wikispecies</a></li>
<li class="wb-otherproject-link wb-otherproject-wikibooks"><a href="https://en.wikibooks.org/wiki/Main_Page" hreflang="en">Wikibooks</a></li>
<li class="wb-otherproject-link wb-otherproject-wikidata"><a href="https://www.wikidata.org/wiki/Wikidata:Main_Page" hreflang="en">Wikidata</a></li>
<li class="wb-otherproject-link wb-otherproject-wikinews"><a href="https://en.wikinews.org/wiki/Main_Page" hreflang="en">Wikinews</a></li>
<li class="wb-otherproject-link wb-otherproject-wikiquote"><a href="https://en.wikiquote.org/wiki/Main_Page" hreflang="en">Wikiquote</a></li>
<li class="wb-otherproject-link wb-otherproject-wikisource"><a href="https://en.wikisource.org/wiki/Main_Page" hreflang="en">Wikisource</a></li>
<li class="wb-otherproject-link wb-otherproject-wikiversity"><a href="https://en.wikiversity.org/wiki/Wikiversity:Main_Page" hreflang="en">Wikiversity</a></li>
<li class="wb-otherproject-link wb-otherproject-wikivoyage"><a href="https://en.wikivoyage.org/wiki/Main_Page" hreflang="en">Wikivoyage</a></li>
<div aria-labelledby="p-lang-label" class="portal" id="p-lang" role="navigation">
<h3 id="p-lang-label">Languages</h3>
<div class="body">
<ul>
<li class="interlanguage-link interwiki-simple"><a href="//simple.wikipedia.org/wiki/" hreflang="simple" lang="simple" title="Simple English">Simple English</a></li><li class="interlanguage-link interwiki-ar"><a href="//ar.wikipedia.org/wiki/" hreflang="ar" lang="ar" title="Arabic">العربية</a></li><li class="interlanguage-link interwiki-id"><a href="//id.wikipedia.org/wiki/" hreflang="id" lang="id" title="Indonesian">Bahasa Indonesia</a></li><li class="interlanguage-link interwiki-ms"><a href="//ms.wikipedia.org/wiki/" hreflang="ms" lang="ms" title="Malay">Bahasa Melayu</a></li><li class="interlanguage-link interwiki-bs"><a href="//bs.wikipedia.org/wiki/" hreflang="bs" lang="bs" title="Bosnian">Bosanski</a></li><li class="interlanguage-link interwiki-bg"><a href="//bg.wikipedia.org/wiki/" hreflang="bg" lang="bg" title="Bulgarian">Български</a></li><li class="interlanguage-link interwiki-ca"><a href="//ca.wikipedia.org/wiki/" hreflang="ca" lang="ca" title="Catalan">Català</a></li><li class="interlanguage-link interwiki-cs"><a href="//cs.wikipedia.org/wiki/" hreflang="cs" lang="cs" title="Czech">Čeština</a></li><li class="interlanguage-link interwiki-da"><a href="//da.wikipedia.org/wiki/" hreflang="da" lang="da" title="Danish">Dansk</a></li><li class="interlanguage-link interwiki-de"><a href="//de.wikipedia.org/wiki/" hreflang="de" lang="de" title="German">Deutsch</a></li><li class="interlanguage-link interwiki-et"><a href="//et.wikipedia.org/wiki/" hreflang="et" lang="et" title="Estonian">Eesti</a></li><li class="interlanguage-link interwiki-el"><a href="//el.wikipedia.org/wiki/" hreflang="el" lang="el" title="Greek">Ελληνικά</a></li><li class="interlanguage-link interwiki-es"><a href="//es.wikipedia.org/wiki/" hreflang="es" lang="es" title="Spanish">Español</a></li><li class="interlanguage-link interwiki-eo"><a href="//eo.wikipedia.org/wiki/" hreflang="eo" lang="eo" title="Esperanto">Esperanto</a></li><li class="interlanguage-link interwiki-eu"><a href="//eu.wikipedia.org/wiki/" hreflang="eu" lang="eu" title="Basque">Euskara</a></li><li class="interlanguage-link interwiki-fa"><a href="//fa.wikipedia.org/wiki/" hreflang="fa" lang="fa" title="Persian">فارسی</a></li><li class="interlanguage-link interwiki-fr"><a href="//fr.wikipedia.org/wiki/" hreflang="fr" lang="fr" title="French">Français</a></li><li class="interlanguage-link interwiki-gl"><a href="//gl.wikipedia.org/wiki/" hreflang="gl" lang="gl" title="Galician">Galego</a></li><li class="interlanguage-link interwiki-ko"><a href="//ko.wikipedia.org/wiki/" hreflang="ko" lang="ko" title="Korean">한국어</a></li><li class="interlanguage-link interwiki-he"><a href="//he.wikipedia.org/wiki/" hreflang="he" lang="he" title="Hebrew">עברית</a></li><li class="interlanguage-link interwiki-hr"><a href="//hr.wikipedia.org/wiki/" hreflang="hr" lang="hr" title="Croatian">Hrvatski</a></li><li class="interlanguage-link interwiki-it"><a href="//it.wikipedia.org/wiki/" hreflang="it" lang="it" title="Italian">Italiano</a></li><li class="interlanguage-link interwiki-ka"><a href="//ka.wikipedia.org/wiki/" hreflang="ka" lang="ka" title="Georgian">ქართული</a></li><li class="interlanguage-link interwiki-lv"><a href="//lv.wikipedia.org/wiki/" hreflang="lv" lang="lv" title="Latvian">Latviešu</a></li><li class="interlanguage-link interwiki-lt"><a href="//lt.wikipedia.org/wiki/" hreflang="lt" lang="lt" title="Lithuanian">Lietuvių</a></li><li class="interlanguage-link interwiki-hu"><a href="//hu.wikipedia.org/wiki/" hreflang="hu" lang="hu" title="Hungarian">Magyar</a></li><li class="interlanguage-link interwiki-nl"><a href="//nl.wikipedia.org/wiki/" hreflang="nl" lang="nl" title="Dutch">Nederlands</a></li><li class="interlanguage-link interwiki-ja"><a href="//ja.wikipedia.org/wiki/" hreflang="ja" lang="ja" title="Japanese">日本語</a></li><li class="interlanguage-link interwiki-no"><a href="//no.wikipedia.org/wiki/" hreflang="no" lang="no" title="Norwegian">Norsk bokmål</a></li><li class="interlanguage-link interwiki-nn"><a href="//nn.wikipedia.org/wiki/" hreflang="nn" lang="nn" title="Norwegian Nynorsk">Norsk nynorsk</a></li><li class="interlanguage-link interwiki-pl"><a href="//pl.wikipedia.org/wiki/" hreflang="pl" lang="pl" title="Polish">Polski</a></li><li class="interlanguage-link interwiki-pt"><a href="//pt.wikipedia.org/wiki/" hreflang="pt" lang="pt" title="Portuguese">Português</a></li><li class="interlanguage-link interwiki-ro"><a href="//ro.wikipedia.org/wiki/" hreflang="ro" lang="ro" title="Romanian">Română</a></li><li class="interlanguage-link interwiki-ru"><a href="//ru.wikipedia.org/wiki/" hreflang="ru" lang="ru" title="Russian">Русский</a></li><li class="interlanguage-link interwiki-sk"><a href="//sk.wikipedia.org/wiki/" hreflang="sk" lang="sk" title="Slovak">Slovenčina</a></li><li class="interlanguage-link interwiki-sl"><a href="//sl.wikipedia.org/wiki/" hreflang="sl" lang="sl" title="Slovenian">Slovenščina</a></li><li class="interlanguage-link interwiki-sr"><a href="//sr.wikipedia.org/wiki/" hreflang="sr" lang="sr" title="Serbian">Српски / srpski</a></li><li class="interlanguage-link interwiki-sh"><a href="//sh.wikipedia.org/wiki/" hreflang="sh" lang="sh" title="Serbo-Croatian">Srpskohrvatski / српскохрватски</a></li><li class="interlanguage-link interwiki-fi"><a href="//fi.wikipedia.org/wiki/" hreflang="fi" lang="fi" title="Finnish">Suomi</a></li><li class="interlanguage-link interwiki-sv"><a href="//sv.wikipedia.org/wiki/" hreflang="sv" lang="sv" title="Swedish">Svenska</a></li><li class="interlanguage-link interwiki-th"><a href="//th.wikipedia.org/wiki/" hreflang="th" lang="th" title="Thai">ไทย</a></li><li class="interlanguage-link interwiki-vi"><a href="//vi.wikipedia.org/wiki/" hreflang="vi" lang="vi" title="Vietnamese">Tiếng Việt</a></li><li class="interlanguage-link interwiki-tr"><a href="//tr.wikipedia.org/wiki/" hreflang="tr" lang="tr" title="Turkish">Türkçe</a></li><li class="interlanguage-link interwiki-uk"><a href="//uk.wikipedia.org/wiki/" hreflang="uk" lang="uk" title="Ukrainian">Українська</a></li><li class="interlanguage-link interwiki-zh"><a href="//zh.wikipedia.org/wiki/" hreflang="zh" lang="zh" title="Chinese">中文</a></li><li class="uls-p-lang-dummy"><a href="#"></a></li> </ul>
</div>
</div>
<li class="interlanguage-link interwiki-ar"><a href="//ar.wikipedia.org/wiki/" hreflang="ar" lang="ar" title="Arabic">العربية</a></li>
<li class="interlanguage-link interwiki-id"><a href="//id.wikipedia.org/wiki/" hreflang="id" lang="id" title="Indonesian">Bahasa Indonesia</a></li>
<li class="interlanguage-link interwiki-ms"><a href="//ms.wikipedia.org/wiki/" hreflang="ms" lang="ms" title="Malay">Bahasa Melayu</a></li>
<li class="interlanguage-link interwiki-bs"><a href="//bs.wikipedia.org/wiki/" hreflang="bs" lang="bs" title="Bosnian">Bosanski</a></li>
<li class="interlanguage-link interwiki-bg"><a href="//bg.wikipedia.org/wiki/" hreflang="bg" lang="bg" title="Bulgarian">Български</a></li>
<li class="interlanguage-link interwiki-ca"><a href="//ca.wikipedia.org/wiki/" hreflang="ca" lang="ca" title="Catalan">Català</a></li>
<li class="interlanguage-link interwiki-cs"><a href="//cs.wikipedia.org/wiki/" hreflang="cs" lang="cs" title="Czech">Čeština</a></li>
<li class="interlanguage-link interwiki-da"><a href="//da.wikipedia.org/wiki/" hreflang="da" lang="da" title="Danish">Dansk</a></li>
<li class="interlanguage-link interwiki-de"><a href="//de.wikipedia.org/wiki/" hreflang="de" lang="de" title="German">Deutsch</a></li>
<li class="interlanguage-link interwiki-et"><a href="//et.wikipedia.org/wiki/" hreflang="et" lang="et" title="Estonian">Eesti</a></li>
<li class="interlanguage-link interwiki-el"><a href="//el.wikipedia.org/wiki/" hreflang="el" lang="el" title="Greek">Ελληνικά</a></li>
<li class="interlanguage-link interwiki-es"><a href="//es.wikipedia.org/wiki/" hreflang="es" lang="es" title="Spanish">Español</a></li>
<li class="interlanguage-link interwiki-eo"><a href="//eo.wikipedia.org/wiki/" hreflang="eo" lang="eo" title="Esperanto">Esperanto</a></li>
<li class="interlanguage-link interwiki-eu"><a href="//eu.wikipedia.org/wiki/" hreflang="eu" lang="eu" title="Basque">Euskara</a></li>
<li class="interlanguage-link interwiki-fa"><a href="//fa.wikipedia.org/wiki/" hreflang="fa" lang="fa" title="Persian">فارسی</a></li>
<li class="interlanguage-link interwiki-fr"><a href="//fr.wikipedia.org/wiki/" hreflang="fr" lang="fr" title="French">Français</a></li>
<li class="interlanguage-link interwiki-gl"><a href="//gl.wikipedia.org/wiki/" hreflang="gl" lang="gl" title="Galician">Galego</a></li>
<li class="interlanguage-link interwiki-ko"><a href="//ko.wikipedia.org/wiki/" hreflang="ko" lang="ko" title="Korean">한국어</a></li>
<li class="interlanguage-link interwiki-he"><a href="//he.wikipedia.org/wiki/" hreflang="he" lang="he" title="Hebrew">עברית</a></li>
<li class="interlanguage-link interwiki-hr"><a href="//hr.wikipedia.org/wiki/" hreflang="hr" lang="hr" title="Croatian">Hrvatski</a></li>
<li class="interlanguage-link interwiki-it"><a href="//it.wikipedia.org/wiki/" hreflang="it" lang="it" title="Italian">Italiano</a></li>
<li class="interlanguage-link interwiki-ka"><a href="//ka.wikipedia.org/wiki/" hreflang="ka" lang="ka" title="Georgian">ქართული</a></li>
<li class="interlanguage-link interwiki-lv"><a href="//lv.wikipedia.org/wiki/" hreflang="lv" lang="lv" title="Latvian">Latviešu</a></li>
<li class="interlanguage-link interwiki-lt"><a href="//lt.wikipedia.org/wiki/" hreflang="lt" lang="lt" title="Lithuanian">Lietuvių</a></li>
<li class="interlanguage-link interwiki-hu"><a href="//hu.wikipedia.org/wiki/" hreflang="hu" lang="hu" title="Hungarian">Magyar</a></li>
<li class="interlanguage-link interwiki-nl"><a href="//nl.wikipedia.org/wiki/" hreflang="nl" lang="nl" title="Dutch">Nederlands</a></li>
<li class="interlanguage-link interwiki-ja"><a href="//ja.wikipedia.org/wiki/" hreflang="ja" lang="ja" title="Japanese">日本語</a></li>
<li class="interlanguage-link interwiki-no"><a href="//no.wikipedia.org/wiki/" hreflang="no" lang="no" title="Norwegian">Norsk bokmål</a></li>
<li class="interlanguage-link interwiki-nn"><a href="//nn.wikipedia.org/wiki/" hreflang="nn" lang="nn" title="Norwegian Nynorsk">Norsk nynorsk</a></li>
<li class="interlanguage-link interwiki-pl"><a href="//pl.wikipedia.org/wiki/" hreflang="pl" lang="pl" title="Polish">Polski</a></li>
<li class="interlanguage-link interwiki-pt"><a href="//pt.wikipedia.org/wiki/" hreflang="pt" lang="pt" title="Portuguese">Português</a></li>
<li class="interlanguage-link interwiki-ro"><a href="//ro.wikipedia.org/wiki/" hreflang="ro" lang="ro" title="Romanian">Română</a></li>
<li class="interlanguage-link interwiki-ru"><a href="//ru.wikipedia.org/wiki/" hreflang="ru" lang="ru" title="Russian">Русский</a></li>
<li class="interlanguage-link interwiki-sk"><a href="//sk.wikipedia.org/wiki/" hreflang="sk" lang="sk" title="Slovak">Slovenčina</a></li>
<li class="interlanguage-link interwiki-sl"><a href="//sl.wikipedia.org/wiki/" hreflang="sl" lang="sl" title="Slovenian">Slovenščina</a></li>
<li class="interlanguage-link interwiki-sr"><a href="//sr.wikipedia.org/wiki/" hreflang="sr" lang="sr" title="Serbian">Српски / srpski</a></li>
<li class="interlanguage-link interwiki-sh"><a href="//sh.wikipedia.org/wiki/" hreflang="sh" lang="sh" title="Serbo-Croatian">Srpskohrvatski / српскохрватски</a></li>
<li class="interlanguage-link interwiki-fi"><a href="//fi.wikipedia.org/wiki/" hreflang="fi" lang="fi" title="Finnish">Suomi</a></li>
<li class="interlanguage-link interwiki-sv"><a href="//sv.wikipedia.org/wiki/" hreflang="sv" lang="sv" title="Swedish">Svenska</a></li>
<li class="interlanguage-link interwiki-th"><a href="//th.wikipedia.org/wiki/" hreflang="th" lang="th" title="Thai">ไทย</a></li>
<li class="interlanguage-link interwiki-vi"><a href="//vi.wikipedia.org/wiki/" hreflang="vi" lang="vi" title="Vietnamese">Tiếng Việt</a></li>
<li class="interlanguage-link interwiki-tr"><a href="//tr.wikipedia.org/wiki/" hreflang="tr" lang="tr" title="Turkish">Türkçe</a></li>
<li class="interlanguage-link interwiki-uk"><a href="//uk.wikipedia.org/wiki/" hreflang="uk" lang="uk" title="Ukrainian">Українська</a></li>
<li class="interlanguage-link interwiki-zh"><a href="//zh.wikipedia.org/wiki/" hreflang="zh" lang="zh" title="Chinese">中文</a></li>
<li class="uls-p-lang-dummy"><a href="#"></a></li>
<div id="footer" role="contentinfo">
<ul id="footer-info">
<li id="footer-info-lastmod"> This page was last modified on 26 December 2015, at 10:03.</li>
<li id="footer-info-copyright">Text is available under the <a href="//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License" rel="license">Creative Commons Attribution-ShareAlike License</a><a href="//creativecommons.org/licenses/by-sa/3.0/" rel="license" style="display:none;"></a>;
additional terms may apply.  By using this site, you agree to the <a href="//wikimediafoundation.org/wiki/Terms_of_Use">Terms of Use</a> and <a href="//wikimediafoundation.org/wiki/Privacy_policy">Privacy Policy</a>. Wikipedia® is a registered trademark of the <a href="//www.wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, a non-profit organization.</li>
</ul>
<ul id="footer-places">
<li id="footer-places-privacy"><a href="//wikimediafoundation.org/wiki/Privacy_policy" title="wmf:Privacy policy">Privacy policy</a></li>
<li id="footer-places-about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
<li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
<li id="footer-places-contact"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
<li id="footer-places-developers"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute">Developers</a></li>
<li id="footer-places-cookiestatement"><a href="//wikimediafoundation.org/wiki/Cookie_statement">Cookie statement</a></li>
<li id="footer-places-mobileview"><a class="noprint stopMobileRedirectToggle" href="//en.m.wikipedia.org/w/index.php?title=Main_Page&amp;mobileaction=toggle_view_mobile">Mobile view</a></li>
</ul>
<ul class="noprint" id="footer-icons">
<li id="footer-copyrightico">
<a href="//wikimediafoundation.org/"><img alt="Wikimedia Foundation" height="31" src="/static/images/wikimedia-button.png" srcset="/static/images/wikimedia-button-1.5x.png 1.5x, /static/images/wikimedia-button-2x.png 2x" width="88"/></a> </li>
<li id="footer-poweredbyico">
<a href="//www.mediawiki.org/"><img alt="Powered by MediaWiki" height="31" src="/w/resources/assets/poweredby_mediawiki_88x31.png" srcset="/w/resources/assets/poweredby_mediawiki_132x47.png 1.5x, /w/resources/assets/poweredby_mediawiki_176x62.png 2x" width="88"/></a> </li>
</ul>
<div style="clear:both"></div>
</div>
<a href="//creativecommons.org/licenses/by-sa/3.0/" rel="license" style="display:none;"></a>
<a href="//wikimediafoundation.org/wiki/Terms_of_Use">Terms of Use</a>
<a href="//wikimediafoundation.org/wiki/Privacy_policy">Privacy Policy</a>
<a href="//www.wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>
<ul id="footer-places">
<li id="footer-places-privacy"><a href="//wikimediafoundation.org/wiki/Privacy_policy" title="wmf:Privacy policy">Privacy policy</a></li>
<li id="footer-places-about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
<li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
<li id="footer-places-contact"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
<li id="footer-places-developers"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute">Developers</a></li>
<li id="footer-places-cookiestatement"><a href="//wikimediafoundation.org/wiki/Cookie_statement">Cookie statement</a></li>
<li id="footer-places-mobileview"><a class="noprint stopMobileRedirectToggle" href="//en.m.wikipedia.org/w/index.php?title=Main_Page&amp;mobileaction=toggle_view_mobile">Mobile view</a></li>
</ul>
<li id="footer-places-about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
<li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
<li id="footer-places-contact"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
<li id="footer-places-developers"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute">Developers</a></li>
<li id="footer-places-cookiestatement"><a href="//wikimediafoundation.org/wiki/Cookie_statement">Cookie statement</a></li>
<li id="footer-places-mobileview"><a class="noprint stopMobileRedirectToggle" href="//en.m.wikipedia.org/w/index.php?title=Main_Page&amp;mobileaction=toggle_view_mobile">Mobile view</a></li>
<ul class="noprint" id="footer-icons">
<li id="footer-copyrightico">
<a href="//wikimediafoundation.org/"><img alt="Wikimedia Foundation" height="31" src="/static/images/wikimedia-button.png" srcset="/static/images/wikimedia-button-1.5x.png 1.5x, /static/images/wikimedia-button-2x.png 2x" width="88"/></a> </li>
<li id="footer-poweredbyico">
<a href="//www.mediawiki.org/"><img alt="Powered by MediaWiki" height="31" src="/w/resources/assets/poweredby_mediawiki_88x31.png" srcset="/w/resources/assets/poweredby_mediawiki_132x47.png 1.5x, /w/resources/assets/poweredby_mediawiki_176x62.png 2x" width="88"/></a> </li>
</ul>
<img alt="Wikimedia Foundation" height="31" src="/static/images/wikimedia-button.png" srcset="/static/images/wikimedia-button-1.5x.png 1.5x, /static/images/wikimedia-button-2x.png 2x" width="88"/>
<img alt="Powered by MediaWiki" height="31" src="/w/resources/assets/poweredby_mediawiki_88x31.png" srcset="/w/resources/assets/poweredby_mediawiki_132x47.png 1.5x, /w/resources/assets/poweredby_mediawiki_176x62.png 2x" width="88"/>

Time for a challenge!

To make sure that everyone is on the same page (and to give you a little more practice dealing with HTML), let's partner up with the person next to you and try challenge A, on using html, in the challenges directory.

Creating data with web APIs

Most people who think they want to do web scraping actually want to pull data down from site-supplied APIs. Using an API is better in almost every way, and really the only reason to scrape data is if:

  1. The website was constructed in the 90s and does not have an API; or,
  2. You are doing something illegal

If LiveJournal has an API, the website you are interested in probably does too.

What is an API?

API is shorthand for Application Programming Interface, which is in turn computer-ese for a middleman.

Think about it this way. You have a bunch of things on your computer that you want other people to be able to look at. Some of them are static documents, some of them call programs in real time, and some of them are programs themselves.

Solution 1

You publish login credentials on the internet, and let anyone log into your computer

Problems:

  1. People will need to know how each document and program works to be able to access their data

  2. You don't want the world looking at your browser history

Solution 2

You paste everything into HTML and publish it on the internet

Problems:

  1. This can be information overload

  2. Making things dynamic can be tricky

Solution 3

You create a set of methods to act as an intermediary between the people you want to help and the things you want them to have access to.

Why this is the best solution:

  1. People only access what you want them to have, in the way that you want them to have it

  2. People use one language to get the things they want

Why this is still not Panglossian:

  1. You will have to explain to people how to use your middleman

Twitter's API

Twitter has an API - mostly written for third-party apps - that is comparatively straightforward and gives you access to nearly all of the information that Twitter has about its users, including:

  1. User histories

  2. User (and tweet) location

  3. User language

  4. Tweet popularity

  5. Tweet spread

  6. Conversation chains

Also, Twitter returns data to you in json, or Java Script Object Notation. This is a very common format for passing data around http connections for browsers and servers, so many APIs return it as a datatype as well (instead of using something like xml or plain text).

Luckily, json converts into native Python data structures. Specifically, every json object you get from Twitter will be a combination of nested dicts and lists, which you learned about yesterday. This makes Twitter a lot easier to manipulate in Python than html objects, for example.

Here's what a tweet looks like:


In [3]:
import json

with open('../data/02_tweet.json','r') as f:
    a_tweet = json.loads(f.read())

We can take a quick look at the structure by pretty printing it:


In [4]:
from pprint import pprint

pprint(a_tweet)


{'contributors': None,
 'coordinates': None,
 'created_at': 'Thu Apr 02 06:09:39 +0000 2015',
 'entities': {'hashtags': [], 'symbols': [], 'urls': [], 'user_mentions': []},
 'favorite_count': 0,
 'favorited': False,
 'geo': None,
 'id': 583511591334719488,
 'id_str': '583511591334719488',
 'in_reply_to_screen_name': None,
 'in_reply_to_status_id': None,
 'in_reply_to_status_id_str': None,
 'in_reply_to_user_id': None,
 'in_reply_to_user_id_str': None,
 'lang': 'ht',
 'place': None,
 'retweet_count': 0,
 'retweeted': False,
 'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
 'text': '.IPA rettiwT eht tuoba nraeL',
 'truncated': False,
 'user': {'contributors_enabled': False,
          'created_at': 'Thu Apr 02 05:54:25 +0000 2015',
          'default_profile': True,
          'default_profile_image': False,
          'description': '',
          'entities': {'description': {'urls': []}},
          'favourites_count': 0,
          'follow_request_sent': False,
          'followers_count': 0,
          'following': False,
          'friends_count': 0,
          'geo_enabled': False,
          'id': 3129088320,
          'id_str': '3129088320',
          'is_translation_enabled': False,
          'is_translator': False,
          'lang': 'en',
          'listed_count': 0,
          'location': '',
          'name': 'Yelekreb Bald',
          'notifications': False,
          'profile_background_color': 'C0DEED',
          'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
          'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
          'profile_background_tile': False,
          'profile_image_url': 'http://pbs.twimg.com/profile_images/583509317476712449/mkd8KGeu_normal.jpg',
          'profile_image_url_https': 'https://pbs.twimg.com/profile_images/583509317476712449/mkd8KGeu_normal.jpg',
          'profile_link_color': '0084B4',
          'profile_location': None,
          'profile_sidebar_border_color': 'C0DEED',
          'profile_sidebar_fill_color': 'DDEEF6',
          'profile_text_color': '333333',
          'profile_use_background_image': True,
          'protected': False,
          'screen_name': 'tob_pohskrow',
          'statuses_count': 1,
          'time_zone': None,
          'url': None,
          'utc_offset': None,
          'verified': False}}

Time for a challenge!

Let's see how much you remember about lists and dicts from yesterday. Go into the challenges directory and try your hand at 02_scraping/C_json.py.

Authentication

Twitter controls access to their servers via a process of authentication and authorization. Authentication is how you let Twitter know who you are, in a way that is very hard to fake. Authorization is how the account owner (which will usually be yourself unless you are writing a Twitter app) controls what you are allowed to do in Twitter using their account. In Twitter, different levels of authorization require different levels of authentication.

Because we want to be able to interact with everything, we'll need the highest level of authorization and the strictest level of authentication. In Twitter, this means that we need two sets of ID's (called keys or tokens) and passwords (called secrets):

  • consumer_key
  • consumer_secret
  • access_token_key
  • access_token_secret

We'll provide some for you to use, but if you want to get your own you need to create an account on Twitter with a verified phone number. Then, while signed in to your Twitter account, go to: https://apps.twitter.com/. Follow the prompts to generate your keys and access tokens. Note that getting the second ID/password pair requires that you manually set the authorization level of your app.

We've stored our credentials in a separate file, which is smart. However, we have uploaded it to Github so that you have them too, which is not smart.

You should NEVER NEVER NEVER do this in real life.

We've stored it in YAML format, because it is more human-readible than JSON is. However, once it's inside Python, these data structures behave the same way.


In [5]:
import yaml

with open('../etc/creds.yml', 'r') as f:
    creds = yaml.load(f)

We're going to load these credentials into a requests module specifically designed for handling the flavor of authentication management that Twitter uses.


In [6]:
from requests_oauthlib import OAuth1Session

twitter = OAuth1Session(**creds)

That ** syntax we just used is called a "double splat" and is a python convenience function for converting the key-value pairs of a dictionary into keyword-argument pairs to pass to a function.

Accessing the API

Access to Twitter's API is organized through URLs called "endpoints". An endpoint is the location at which you can submit a request for Twitter to do something for you.

For example, the "endpoint" to search for specific kinds of tweets is at:

https://api.twitter.com/1.1/search/tweets.json

whereas posting new tweets is at:

https://api.twitter.com/1.1/statuses/update.json

For more information on the REST APIs, end points, and terms, check out: https://dev.twitter.com/rest/public. For the Streaming APIs: https://dev.twitter.com/streaming/overview.

All APIs on Twitter are "rate-limited" - this means that you are only allowed to ask a set number of questions per unit time (to keep their servers from being overloaded). This rate varies by endpoint and authorization, so be sure to check their developer site for the action you are trying to take.

For example, at the lowest level of authorization (Twitter calls this application only), you are allowed to make 450 search requests per 15 minute window, or about one every two seconds. At the highest level of authorization (Twitter calls this user) you can submit 180 requests every 15 minutes, or only about once every five seconds.

side note - Google search is the worst rate-limiting I've ever seen, with an allowance of one hundred requests per day, or about once every nine hundred seconds

Let's try a couple of simple API queries. We're going to specify query parameters with param.


In [19]:
search = "https://api.twitter.com/1.1/search/tweets.json"

r = twitter.get(search, params={'q' : 'technology'})

This has returned an http response object, which contains data like whether or not the request succeeded:


In [20]:
r.ok


Out[20]:
True

You can also get the http response code, and the reason why Twitter sent you that code (these are all super important for controlling the flow of your program).


In [21]:
r.status_code, r.reason


Out[21]:
(200, 'OK')

The data that we asked Twitter to send us in r.content


In [23]:
r.content


Out[23]:
b'{"statuses":[{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:38 +0000 2016","id":701900434420736000,"id_str":"701900434420736000","text":"RT @CarolineRCurran: Children without internet at home struggle to do homework. I\'ve seen this myself. Teachers need to consider it!\\nhttps:\\u2026","source":"\\u003ca href=\\"http:\\/\\/twitter.com\\/download\\/android\\" rel=\\"nofollow\\"\\u003eTwitter for Android\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138156405,"id_str":"138156405","name":"Iamthetlj","screen_name":"Iamthetlj","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":103,"friends_count":127,"listed_count":23,"created_at":"Wed Apr 28 19:46:17 +0000 2010","favourites_count":39690,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":5348,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_2_normal.png","profile_image_url_https":"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_2_normal.png","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:18:51 +0000 2016","id":701893943521206272,"id_str":"701893943521206272","text":"Children without internet at home struggle to do homework. I\'ve seen this myself. Teachers need to consider it!\\nhttps:\\/\\/t.co\\/6zbeEonnKW","source":"\\u003ca href=\\"http:\\/\\/twitter.com\\" rel=\\"nofollow\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":169099781,"id_str":"169099781","name":"Caroline R. Curran","screen_name":"CarolineRCurran","location":"New York State","description":"An intellectual says a simple thing in a hard way. \\r\\n An artist says a hard thing in a simple way. \\r\\n- Charles Bukowski","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":133,"listed_count":23,"created_at":"Wed Jul 21 15:01:05 +0000 2010","favourites_count":3053,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":14697,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"08120B","profile_background_image_url":"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/579478899039469568\\/SNcCvojH.jpg","profile_background_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/579478899039469568\\/SNcCvojH.jpg","profile_background_tile":true,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/1212328961\\/compressed_blog_photo_normal.jpg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/1212328961\\/compressed_blog_photo_normal.jpg","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/169099781\\/1427157998","profile_link_color":"0C8F06","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C6E0A3","profile_text_color":"2F4020","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\\/\\/t.co\\/6zbeEonnKW","expanded_url":"http:\\/\\/www.nytimes.com\\/2016\\/02\\/23\\/technology\\/fcc-internet-access-school.html?smid=tw-share","display_url":"nytimes.com\\/2016\\/02\\/23\\/tec\\u2026","indices":[112,135]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CarolineRCurran","name":"Caroline R. Curran","id":169099781,"id_str":"169099781","indices":[3,19]}],"urls":[{"url":"https:\\/\\/t.co\\/6zbeEonnKW","expanded_url":"http:\\/\\/www.nytimes.com\\/2016\\/02\\/23\\/technology\\/fcc-internet-access-school.html?smid=tw-share","display_url":"nytimes.com\\/2016\\/02\\/23\\/tec\\u2026","indices":[139,140]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:38 +0000 2016","id":701900432751235072,"id_str":"701900432751235072","text":"Marfeel Unveils #Game-Changing AMP Compatibility Technology at Mobile World Congress 2016 https:\\/\\/t.co\\/Dy51uXceLO","source":"\\u003ca href=\\"http:\\/\\/dlvr.it\\" rel=\\"nofollow\\"\\u003edlvr.it\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1242566725,"id_str":"1242566725","name":"SEO Content","screen_name":"_SEO_Content","location":"","description":"Share about SEO, content, articles & news! https:\\/\\/t.co\\/tNLKVYG402","url":"https:\\/\\/t.co\\/tNLKVYG402","entities":{"url":{"urls":[{"url":"https:\\/\\/t.co\\/tNLKVYG402","expanded_url":"http:\\/\\/bit.ly\\/1QsNiq2","display_url":"bit.ly\\/1QsNiq2","indices":[0,23]}]},"description":{"urls":[{"url":"https:\\/\\/t.co\\/tNLKVYG402","expanded_url":"http:\\/\\/bit.ly\\/1QsNiq2","display_url":"bit.ly\\/1QsNiq2","indices":[43,66]}]}},"protected":false,"followers_count":1355,"friends_count":2026,"listed_count":581,"created_at":"Tue Mar 05 01:04:07 +0000 2013","favourites_count":470,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":10635,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/627524498028269568\\/D-RNm8CM_normal.jpg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/627524498028269568\\/D-RNm8CM_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Game","indices":[16,21]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\\/\\/t.co\\/Dy51uXceLO","expanded_url":"http:\\/\\/dlvr.it\\/KZt2br","display_url":"dlvr.it\\/KZt2br","indices":[90,113]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:37 +0000 2016","id":701900428733239296,"id_str":"701900428733239296","text":"Forgive me, but isn\'t the disposable card a, umm, a battery?  https:\\/\\/t.co\\/DDrLEK43u0","source":"\\u003ca href=\\"http:\\/\\/twitter.com\\" rel=\\"nofollow\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":66936421,"id_str":"66936421","name":"Roger Adams","screen_name":"hammerfeather","location":"Exeter, UK","description":"Boring.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":192,"friends_count":222,"listed_count":15,"created_at":"Wed Aug 19 07:07:28 +0000 2009","favourites_count":407,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":7148,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/1783272825\\/10_08_01_Mt_Ventoux_1wtx0e-CCD5_b_normal.jpg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/1783272825\\/10_08_01_Mt_Ventoux_1wtx0e-CCD5_b_normal.jpg","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/66936421\\/1357509116","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\\/\\/t.co\\/DDrLEK43u0","expanded_url":"http:\\/\\/www.bbc.co.uk\\/news\\/technology-35628021","display_url":"bbc.co.uk\\/news\\/technolog\\u2026","indices":[62,85]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:36 +0000 2016","id":701900425889320960,"id_str":"701900425889320960","text":"MWC 2016: Facebook uses AI to map people\'s homes - https:\\/\\/t.co\\/lApFbOJszD","source":"\\u003ca href=\\"http:\\/\\/twitter.com\\/download\\/android\\" rel=\\"nofollow\\"\\u003eTwitter for Android\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":399687001,"id_str":"399687001","name":"Neuralus","screen_name":"Neuralus","location":"","description":"Neuralus is focused on producing software solutions that automate tasks that, until now, have resisted automation.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":94,"listed_count":1,"created_at":"Thu Oct 27 21:50:42 +0000 2011","favourites_count":55,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":185,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/2158729716\\/image_normal.jpg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/2158729716\\/image_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\\/\\/t.co\\/lApFbOJszD","expanded_url":"http:\\/\\/www.bbc.co.uk\\/news\\/technology-35633915","display_url":"bbc.co.uk\\/news\\/technolog\\u2026","indices":[51,74]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:36 +0000 2016","id":701900423628771334,"id_str":"701900423628771334","text":"10 Things To Know. Connected cars are a preview to something much bigger than the car https:\\/\\/t.co\\/MUXrBNroCw","source":"\\u003ca href=\\"http:\\/\\/ifttt.com\\" rel=\\"nofollow\\"\\u003eIFTTT\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1136595200,"id_str":"1136595200","name":"Jeannette","screen_name":"Jeannette_Bot","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":0,"listed_count":50,"created_at":"Thu Jan 31 10:11:02 +0000 2013","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54564,"lang":"de","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/695225326964756480\\/CraLr8N9_normal.jpg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/695225326964756480\\/CraLr8N9_normal.jpg","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1136595200\\/1359641066","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\\/\\/t.co\\/MUXrBNroCw","expanded_url":"http:\\/\\/ift.tt\\/20RirDw","display_url":"ift.tt\\/20RirDw","indices":[86,109]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:35 +0000 2016","id":701900418679488512,"id_str":"701900418679488512","text":"RT @AdrienneLaF: Dystopia is an understatement. @ibogost, reporting from the future https:\\/\\/t.co\\/iHAbjP7t9I https:\\/\\/t.co\\/KEVOWyYQFu","source":"\\u003ca href=\\"http:\\/\\/twitter.com\\/download\\/android\\" rel=\\"nofollow\\"\\u003eTwitter for Android\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2230218102,"id_str":"2230218102","name":"Crap Futures","screen_name":"crapfutures","location":"Madeira ","description":"Casting a critical eye on corporate dreams and emerging technologies. James Auger and Julian Hanna.","url":"https:\\/\\/t.co\\/FhTbAE7vkR","entities":{"url":{"urls":[{"url":"https:\\/\\/t.co\\/FhTbAE7vkR","expanded_url":"http:\\/\\/crapfutures.tumblr.com","display_url":"crapfutures.tumblr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":246,"friends_count":225,"listed_count":10,"created_at":"Wed Dec 04 17:01:36 +0000 2013","favourites_count":85,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":153,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/667357585591443456\\/wKNc2UV6_normal.jpg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/667357585591443456\\/wKNc2UV6_normal.jpg","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2230218102\\/1447945254","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 21:18:15 +0000 2016","id":701878695330451456,"id_str":"701878695330451456","text":"Dystopia is an understatement. @ibogost, reporting from the future https:\\/\\/t.co\\/iHAbjP7t9I https:\\/\\/t.co\\/KEVOWyYQFu","source":"\\u003ca href=\\"http:\\/\\/twitter.com\\/download\\/iphone\\" rel=\\"nofollow\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":5548952,"id_str":"5548952","name":"Adrienne LaFrance","screen_name":"AdrienneLaF","location":"Pale Blue Dot","description":"Human, reporter, staff writer @TheAtlantic. Just one more question.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8316,"friends_count":1859,"listed_count":473,"created_at":"Fri Apr 27 09:18:00 +0000 2007","favourites_count":18657,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":19962,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/552493352684236800\\/qCU1-6K7.jpeg","profile_background_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/552493352684236800\\/qCU1-6K7.jpeg","profile_background_tile":true,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/1130355015\\/Adrienne_LaFrance_normal.jpeg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/1130355015\\/Adrienne_LaFrance_normal.jpeg","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/5548952\\/1356716037","profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":21,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ibogost","name":"Ian Bogost","id":6825792,"id_str":"6825792","indices":[31,39]}],"urls":[{"url":"https:\\/\\/t.co\\/iHAbjP7t9I","expanded_url":"http:\\/\\/www.theatlantic.com\\/technology\\/archive\\/2016\\/02\\/bonkers-zuckerberg\\/470400\\/","display_url":"theatlantic.com\\/technology\\/arc\\u2026","indices":[67,90]}],"media":[{"id":701878692855865344,"id_str":"701878692855865344","indices":[91,114],"media_url":"http:\\/\\/pbs.twimg.com\\/media\\/Cb2S89MW4AAb9uR.jpg","media_url_https":"https:\\/\\/pbs.twimg.com\\/media\\/Cb2S89MW4AAb9uR.jpg","url":"https:\\/\\/t.co\\/KEVOWyYQFu","display_url":"pic.twitter.com\\/KEVOWyYQFu","expanded_url":"http:\\/\\/twitter.com\\/AdrienneLaF\\/status\\/701878695330451456\\/photo\\/1","type":"photo","sizes":{"small":{"w":615,"h":410,"resize":"fit"},"large":{"w":615,"h":410,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":615,"h":410,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":18,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AdrienneLaF","name":"Adrienne LaFrance","id":5548952,"id_str":"5548952","indices":[3,15]},{"screen_name":"ibogost","name":"Ian Bogost","id":6825792,"id_str":"6825792","indices":[48,56]}],"urls":[{"url":"https:\\/\\/t.co\\/iHAbjP7t9I","expanded_url":"http:\\/\\/www.theatlantic.com\\/technology\\/archive\\/2016\\/02\\/bonkers-zuckerberg\\/470400\\/","display_url":"theatlantic.com\\/technology\\/arc\\u2026","indices":[84,107]}],"media":[{"id":701878692855865344,"id_str":"701878692855865344","indices":[108,131],"media_url":"http:\\/\\/pbs.twimg.com\\/media\\/Cb2S89MW4AAb9uR.jpg","media_url_https":"https:\\/\\/pbs.twimg.com\\/media\\/Cb2S89MW4AAb9uR.jpg","url":"https:\\/\\/t.co\\/KEVOWyYQFu","display_url":"pic.twitter.com\\/KEVOWyYQFu","expanded_url":"http:\\/\\/twitter.com\\/AdrienneLaF\\/status\\/701878695330451456\\/photo\\/1","type":"photo","sizes":{"small":{"w":615,"h":410,"resize":"fit"},"large":{"w":615,"h":410,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":615,"h":410,"resize":"fit"}},"source_status_id":701878695330451456,"source_status_id_str":"701878695330451456","source_user_id":5548952,"source_user_id_str":"5548952"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:30 +0000 2016","id":701900401004556289,"id_str":"701900401004556289","text":"RT @CoxEnterprises: Congrats to @CoxAutomotive for being named one of Georgia\'s top innovative tech companies by @TAGthink! https:\\/\\/t.co\\/uQ\\u2026","source":"\\u003ca href=\\"http:\\/\\/127.0.0.1\\" rel=\\"nofollow\\"\\u003e58d28394858d92b2668d01879cf3c222\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24951958,"id_str":"24951958","name":"Thomas DelVecchio","screen_name":"tdelvecchio","location":"NYC","description":"Founder of ETR, ETR&D, vLAB & ESP. Market researcher, data scientist, Startup Advocate\\/Mentor. Husband to an incredible Maracucha & Dad to dos loquitos.","url":"https:\\/\\/t.co\\/qWM1eBgc8D","entities":{"url":{"urls":[{"url":"https:\\/\\/t.co\\/qWM1eBgc8D","expanded_url":"http:\\/\\/etrd.com","display_url":"etrd.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":637,"friends_count":2047,"listed_count":100,"created_at":"Tue Mar 17 20:51:14 +0000 2009","favourites_count":1334,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":809,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"242424","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/577677124414390273\\/BVI0mw3b_normal.jpeg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/577677124414390273\\/BVI0mw3b_normal.jpeg","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24951958\\/1455651686","profile_link_color":"297CA9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 21:14:24 +0000 2016","id":701877723308883969,"id_str":"701877723308883969","text":"Congrats to @CoxAutomotive for being named one of Georgia\'s top innovative tech companies by @TAGthink! https:\\/\\/t.co\\/uQ7E8cCO73","source":"\\u003ca href=\\"http:\\/\\/twitter.com\\" rel=\\"nofollow\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28126953,"id_str":"28126953","name":"Cox Enterprises","screen_name":"CoxEnterprises","location":"Atlanta","description":"Leading communications, media & automotive services company; $18B revenue & 55,000 employees; Spokesperson: Elizabeth Olmstead (678-645-0762)","url":"http:\\/\\/t.co\\/cT6TVsFmWn","entities":{"url":{"urls":[{"url":"http:\\/\\/t.co\\/cT6TVsFmWn","expanded_url":"http:\\/\\/www.coxinc.com","display_url":"coxinc.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4732,"friends_count":1229,"listed_count":153,"created_at":"Wed Apr 01 15:33:57 +0000 2009","favourites_count":432,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"verified":false,"statuses_count":4949,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/458968919621918721\\/cZAjD0_H.png","profile_background_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/458968919621918721\\/cZAjD0_H.png","profile_background_tile":true,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/539409892600074240\\/VhkePoVT_normal.jpeg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/539409892600074240\\/VhkePoVT_normal.jpeg","profile_link_color":"003CB3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":6,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CoxAutomotive","name":"Cox Automotive","id":2774529913,"id_str":"2774529913","indices":[12,26]},{"screen_name":"TAGthink","name":"TAG","id":47421744,"id_str":"47421744","indices":[93,102]}],"urls":[{"url":"https:\\/\\/t.co\\/uQ7E8cCO73","expanded_url":"http:\\/\\/www.bizjournals.com\\/atlanta\\/blog\\/atlantech\\/2016\\/02\\/who-made-tag-s-top-40-innovative-technology.html?ana=e_du_pap&s=article_du&ed=2016-02-22&u=jHeE6syKYI20ysNKasxB11B%2BHRB&t=1456175508","display_url":"bizjournals.com\\/atlanta\\/blog\\/a\\u2026","indices":[104,127]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CoxEnterprises","name":"Cox Enterprises","id":28126953,"id_str":"28126953","indices":[3,18]},{"screen_name":"CoxAutomotive","name":"Cox Automotive","id":2774529913,"id_str":"2774529913","indices":[32,46]},{"screen_name":"TAGthink","name":"TAG","id":47421744,"id_str":"47421744","indices":[113,122]}],"urls":[{"url":"https:\\/\\/t.co\\/uQ7E8cCO73","expanded_url":"http:\\/\\/www.bizjournals.com\\/atlanta\\/blog\\/atlantech\\/2016\\/02\\/who-made-tag-s-top-40-innovative-technology.html?ana=e_du_pap&s=article_du&ed=2016-02-22&u=jHeE6syKYI20ysNKasxB11B%2BHRB&t=1456175508","display_url":"bizjournals.com\\/atlanta\\/blog\\/a\\u2026","indices":[124,140]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:26 +0000 2016","id":701900383988412416,"id_str":"701900383988412416","text":"RT @PIRegistry: 2016 Online Technology Benchmarks for NGOs in #Europe: https:\\/\\/t.co\\/ISOK1kHZpa https:\\/\\/t.co\\/2iLtKanDC5","source":"\\u003ca href=\\"http:\\/\\/twitter.com\\/download\\/iphone\\" rel=\\"nofollow\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2882959119,"id_str":"2882959119","name":"#Me Of Cause","screen_name":"Its_coolmusty","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":725,"friends_count":610,"listed_count":18,"created_at":"Tue Nov 18 19:00:43 +0000 2014","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21148,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/690313986299039745\\/abddG2m3_normal.jpg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/690313986299039745\\/abddG2m3_normal.jpg","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2882959119\\/1450138977","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Wed Feb 10 13:56:26 +0000 2016","id":697418852951531520,"id_str":"697418852951531520","text":"2016 Online Technology Benchmarks for NGOs in #Europe: https:\\/\\/t.co\\/ISOK1kHZpa https:\\/\\/t.co\\/2iLtKanDC5","source":"\\u003ca href=\\"http:\\/\\/twitter.com\\" rel=\\"nofollow\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1091109457,"id_str":"1091109457","name":"Public Interest Reg.","screen_name":"PIRegistry","location":"To the right of the dot ;)","description":"Helping empower, through the Internet, those who dedicate themselves to improving our world. We\'re the people behind the .ORG, .NGO and .ONG domain names.","url":"http:\\/\\/t.co\\/NXfKkbXKEH","entities":{"url":{"urls":[{"url":"http:\\/\\/t.co\\/NXfKkbXKEH","expanded_url":"http:\\/\\/www.pir.org","display_url":"pir.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":105746,"friends_count":1282,"listed_count":199,"created_at":"Tue Jan 15 05:18:09 +0000 2013","favourites_count":1829,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":4487,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"173B4F","profile_background_image_url":"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000164236821\\/3ClbxHmi.png","profile_background_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000164236821\\/3ClbxHmi.png","profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/567321530980261888\\/1nsdkMSj_normal.png","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/567321530980261888\\/1nsdkMSj_normal.png","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1091109457\\/1424114837","profile_link_color":"50C78C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":380,"favorite_count":1024,"entities":{"hashtags":[{"text":"Europe","indices":[46,53]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\\/\\/t.co\\/ISOK1kHZpa","expanded_url":"http:\\/\\/techreport.ngo","display_url":"techreport.ngo","indices":[55,78]}],"media":[{"id":697418852347547648,"id_str":"697418852347547648","indices":[79,102],"media_url":"http:\\/\\/pbs.twimg.com\\/media\\/Ca26wEnWEAAwxtQ.png","media_url_https":"https:\\/\\/pbs.twimg.com\\/media\\/Ca26wEnWEAAwxtQ.png","url":"https:\\/\\/t.co\\/2iLtKanDC5","display_url":"pic.twitter.com\\/2iLtKanDC5","expanded_url":"http:\\/\\/twitter.com\\/PIRegistry\\/status\\/697418852951531520\\/photo\\/1","type":"photo","sizes":{"large":{"w":681,"h":314,"resize":"fit"},"medium":{"w":600,"h":277,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":157,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":380,"favorite_count":0,"entities":{"hashtags":[{"text":"Europe","indices":[62,69]}],"symbols":[],"user_mentions":[{"screen_name":"PIRegistry","name":"Public Interest Reg.","id":1091109457,"id_str":"1091109457","indices":[3,14]}],"urls":[{"url":"https:\\/\\/t.co\\/ISOK1kHZpa","expanded_url":"http:\\/\\/techreport.ngo","display_url":"techreport.ngo","indices":[71,94]}],"media":[{"id":697418852347547648,"id_str":"697418852347547648","indices":[95,118],"media_url":"http:\\/\\/pbs.twimg.com\\/media\\/Ca26wEnWEAAwxtQ.png","media_url_https":"https:\\/\\/pbs.twimg.com\\/media\\/Ca26wEnWEAAwxtQ.png","url":"https:\\/\\/t.co\\/2iLtKanDC5","display_url":"pic.twitter.com\\/2iLtKanDC5","expanded_url":"http:\\/\\/twitter.com\\/PIRegistry\\/status\\/697418852951531520\\/photo\\/1","type":"photo","sizes":{"large":{"w":681,"h":314,"resize":"fit"},"medium":{"w":600,"h":277,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":157,"resize":"fit"}},"source_status_id":697418852951531520,"source_status_id_str":"697418852951531520","source_user_id":1091109457,"source_user_id_str":"1091109457"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:26 +0000 2016","id":701900381475962881,"id_str":"701900381475962881","text":"I\'m becoming super excited about technology and the ability to create","source":"\\u003ca href=\\"http:\\/\\/twitter.com\\/download\\/iphone\\" rel=\\"nofollow\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2327346707,"id_str":"2327346707","name":"Emojicon John","screen_name":"CardiakBlaze","location":"","description":"NEW\\u203c\\ufe0f GLO FREESTYLE https:\\/\\/t.co\\/Ah0OTr0YKJ","url":null,"entities":{"description":{"urls":[{"url":"https:\\/\\/t.co\\/Ah0OTr0YKJ","expanded_url":"https:\\/\\/soundcloud.com\\/filthyrichvee\\/glo-feat-cardiak-blaze","display_url":"soundcloud.com\\/filthyrichvee\\/\\u2026","indices":[20,43]}]}},"protected":false,"followers_count":471,"friends_count":284,"listed_count":7,"created_at":"Thu Feb 06 04:23:33 +0000 2014","favourites_count":10519,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21363,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/697462795709894656\\/vdLr77r__normal.jpg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/697462795709894656\\/vdLr77r__normal.jpg","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2327346707\\/1454964755","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:22 +0000 2016","id":701900366359695361,"id_str":"701900366359695361","text":"As the world continues to innovate and technology continues to improve, our... https:\\/\\/t.co\\/wcvPDngkZl https:\\/\\/t.co\\/mjK4cDZQLG","source":"\\u003ca href=\\"http:\\/\\/twitter.com\\" rel=\\"nofollow\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4850430361,"id_str":"4850430361","name":"Easy Body Detox","screen_name":"ezbodydetox","location":"","description":"","url":"https:\\/\\/t.co\\/JGzi7PJmVU","entities":{"url":{"urls":[{"url":"https:\\/\\/t.co\\/JGzi7PJmVU","expanded_url":"http:\\/\\/easybodydetox.com","display_url":"easybodydetox.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":0,"listed_count":0,"created_at":"Tue Feb 02 18:30:13 +0000 2016","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":6,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/695325841300025344\\/v9XvTvL1_normal.png","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/695325841300025344\\/v9XvTvL1_normal.png","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4850430361\\/1454973832","profile_link_color":"2B7BB9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\\/\\/t.co\\/wcvPDngkZl","expanded_url":"http:\\/\\/easybodydetox.com\\/heavy-metal-detox\\/","display_url":"easybodydetox.com\\/heavy-metal-de\\u2026","indices":[79,102]}],"media":[{"id":701900365743071235,"id_str":"701900365743071235","indices":[103,126],"media_url":"http:\\/\\/pbs.twimg.com\\/media\\/Cb2mqe_VIAM9BNb.jpg","media_url_https":"https:\\/\\/pbs.twimg.com\\/media\\/Cb2mqe_VIAM9BNb.jpg","url":"https:\\/\\/t.co\\/mjK4cDZQLG","display_url":"pic.twitter.com\\/mjK4cDZQLG","expanded_url":"http:\\/\\/twitter.com\\/ezbodydetox\\/status\\/701900366359695361\\/photo\\/1","type":"photo","sizes":{"large":{"w":620,"h":542,"resize":"fit"},"small":{"w":620,"h":542,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":620,"h":542,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:22 +0000 2016","id":701900364140810241,"id_str":"701900364140810241","text":"\\"In the age of advanced technology, spiritual devastation is more likely to come from an enemy with a smiling face.\\" https:\\/\\/t.co\\/cVOznjxYvS","source":"\\u003ca href=\\"http:\\/\\/twitter.com\\" rel=\\"nofollow\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2800241771,"id_str":"2800241771","name":"Andrew Brickfield","screen_name":"a_brick_field","location":"District of Columbia, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":179,"listed_count":1,"created_at":"Thu Oct 02 15:42:32 +0000 2014","favourites_count":6,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":245,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/632691847316549633\\/l3ONklaS_normal.jpg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/632691847316549633\\/l3ONklaS_normal.jpg","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2800241771\\/1412267113","profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":701900363138334720,"id_str":"701900363138334720","indices":[117,140],"media_url":"http:\\/\\/pbs.twimg.com\\/media\\/Cb2mqVSUAAAtPlE.jpg","media_url_https":"https:\\/\\/pbs.twimg.com\\/media\\/Cb2mqVSUAAAtPlE.jpg","url":"https:\\/\\/t.co\\/cVOznjxYvS","display_url":"pic.twitter.com\\/cVOznjxYvS","expanded_url":"http:\\/\\/twitter.com\\/a_brick_field\\/status\\/701900364140810241\\/photo\\/1","type":"photo","sizes":{"small":{"w":484,"h":252,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":484,"h":252,"resize":"fit"},"large":{"w":484,"h":252,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:20 +0000 2016","id":701900358071660544,"id_str":"701900358071660544","text":"In this parody, there\'s no thing in this world J.J... Hot on #theneeds #Technology https:\\/\\/t.co\\/wWvVWzKneg","source":"\\u003ca href=\\"http:\\/\\/www.theneeds.com\\" rel=\\"nofollow\\"\\u003etheneeds_news2\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1869348505,"id_str":"1869348505","name":"Theneeds BeInformed","screen_name":"theneeds_news","location":"San Francisco","description":"#Discover and discuss all the web\\u2019s #News in one place with people just like you. http:\\/\\/t.co\\/xmJYPwpTGF! #USNews #Politics #World #Economy #Technology ...","url":"http:\\/\\/t.co\\/1SsP3f5Iz4","entities":{"url":{"urls":[{"url":"http:\\/\\/t.co\\/1SsP3f5Iz4","expanded_url":"http:\\/\\/theneeds.com","display_url":"theneeds.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\\/\\/t.co\\/xmJYPwpTGF","expanded_url":"http:\\/\\/www.theneeds.com","display_url":"theneeds.com","indices":[82,104]}]}},"protected":false,"followers_count":691,"friends_count":53,"listed_count":117,"created_at":"Sun Sep 15 21:46:56 +0000 2013","favourites_count":18151,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":15530,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000465263029\\/928102c0591b99272de5a75cd5ca1d2b_normal.png","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000465263029\\/928102c0591b99272de5a75cd5ca1d2b_normal.png","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1869348505\\/1379314533","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"theneeds","indices":[61,70]},{"text":"Technology","indices":[71,82]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\\/\\/t.co\\/wWvVWzKneg","expanded_url":"http:\\/\\/www.theneeds.com\\/news\\/n11372825\\/in-this-parody-there-s-no-thing-cnet?utm_source=twitter&utm_medium=social&utm_campaign=_news&utm_content=share_0news","display_url":"theneeds.com\\/news\\/n11372825\\u2026","indices":[83,106]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:19 +0000 2016","id":701900354300940290,"id_str":"701900354300940290","text":"Make your Career with Top Healthcare Technology Company - https:\\/\\/t.co\\/JwVqBsxg1J","source":"\\u003ca href=\\"http:\\/\\/www.linkedin.com\\/\\" rel=\\"nofollow\\"\\u003eLinkedIn\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16882750,"id_str":"16882750","name":"nvgarnichaud","screen_name":"nvgarnichaud","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":7,"listed_count":0,"created_at":"Tue Oct 21 07:30:38 +0000 2008","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_tile":false,"profile_image_url":"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_3_normal.png","profile_image_url_https":"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_3_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\\/\\/t.co\\/JwVqBsxg1J","expanded_url":"https:\\/\\/lnkd.in\\/e5TqWRE","display_url":"lnkd.in\\/e5TqWRE","indices":[58,81]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Feb 22 22:44:19 +0000 2016","id":701900352317169667,"id_str":"701900352317169667","text":"#technology: Google Fiber joins forces with municipal broadband network | https:\\/\\/t.co\\/5ALlvN9QIh https:\\/\\/t.co\\/waXIzkQoQP","source":"\\u003ca href=\\"http:\\/\\/ifttt.com\\" rel=\\"nofollow\\"\\u003eIFTTT\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3065813609,"id_str":"3065813609","name":"r\\/","screen_name":"bzdt3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":333,"friends_count":0,"listed_count":183,"created_at":"Sun Mar 01 20:54:09 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":151141,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_image_url_https":"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png","profile_background_tile":false,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/572151330936864768\\/IgBxxpa3_normal.png","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/572151330936864768\\/IgBxxpa3_normal.png","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"technology","indices":[0,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\\/\\/t.co\\/5ALlvN9QIh","expanded_url":"http:\\/\\/ift.tt\\/21a9NWg","display_url":"ift.tt\\/21a9NWg","indices":[74,97]}],"media":[{"id":701900352174612480,"id_str":"701900352174612480","indices":[98,121],"media_url":"http:\\/\\/pbs.twimg.com\\/media\\/Cb2mpscW4AA0I_5.png","media_url_https":"https:\\/\\/pbs.twimg.com\\/media\\/Cb2mpscW4AA0I_5.png","url":"https:\\/\\/t.co\\/waXIzkQoQP","display_url":"pic.twitter.com\\/waXIzkQoQP","expanded_url":"http:\\/\\/twitter.com\\/bzdt3\\/status\\/701900352317169667\\/photo\\/1","type":"photo","sizes":{"medium":{"w":640,"h":467,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":467,"resize":"fit"},"large":{"w":640,"h":467,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"in","result_type":"recent"},"created_at":"Mon Feb 22 22:44:18 +0000 2016","id":701900350413008897,"id_str":"701900350413008897","text":"#Entertainment #Buzz #Gossip #Tech #Technology https:\\/\\/t.co\\/WheOVupwzt Irudhi Suttru Tamil Movie | Back-to-Back De\\u2026 https:\\/\\/t.co\\/Uh05Nqbfbo","source":"\\u003ca href=\\"http:\\/\\/ifttt.com\\" rel=\\"nofollow\\"\\u003eIFTTT\\u003c\\/a\\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":723170486,"id_str":"723170486","name":"Visvya Media","screen_name":"VisvyaMedia","location":"","description":"Watch Live News Channel,Film Reviews,Film Song,Full Movies,Official Film Trailers, Comedy and Short Film Online. Visit https:\\/\\/t.co\\/xd7iw6w3dw","url":"https:\\/\\/t.co\\/xd7iw6w3dw","entities":{"url":{"urls":[{"url":"https:\\/\\/t.co\\/xd7iw6w3dw","expanded_url":"http:\\/\\/www.visvya.com","display_url":"visvya.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\\/\\/t.co\\/xd7iw6w3dw","expanded_url":"http:\\/\\/www.visvya.com","display_url":"visvya.com","indices":[119,142]}]}},"protected":false,"followers_count":9,"friends_count":0,"listed_count":20,"created_at":"Sun Jul 29 01:53:16 +0000 2012","favourites_count":0,"utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"verified":false,"statuses_count":422,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/617346119\\/d479b2fgtei0qzp7khvo.jpeg","profile_background_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/617346119\\/d479b2fgtei0qzp7khvo.jpeg","profile_background_tile":true,"profile_image_url":"http:\\/\\/pbs.twimg.com\\/profile_images\\/701071634757771264\\/wM6t0fe0_normal.jpg","profile_image_url_https":"https:\\/\\/pbs.twimg.com\\/profile_images\\/701071634757771264\\/wM6t0fe0_normal.jpg","profile_banner_url":"https:\\/\\/pbs.twimg.com\\/profile_banners\\/723170486\\/1455983464","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Entertainment","indices":[0,14]},{"text":"Buzz","indices":[15,20]},{"text":"Gossip","indices":[21,28]},{"text":"Tech","indices":[29,34]},{"text":"Technology","indices":[35,46]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\\/\\/t.co\\/WheOVupwzt","expanded_url":"http:\\/\\/bit.ly\\/1KFfnZk","display_url":"bit.ly\\/1KFfnZk","indices":[47,70]}],"media":[{"id":701900350266200065,"id_str":"701900350266200065","indices":[116,139],"media_url":"http:\\/\\/pbs.twimg.com\\/media\\/Cb2mplVW0AEiy8N.jpg","media_url_https":"https:\\/\\/pbs.twimg.com\\/media\\/Cb2mplVW0AEiy8N.jpg","url":"https:\\/\\/t.co\\/Uh05Nqbfbo","display_url":"pic.twitter.com\\/Uh05Nqbfbo","expanded_url":"http:\\/\\/twitter.com\\/VisvyaMedia\\/status\\/701900350413008897\\/photo\\/1","type":"photo","sizes":{"small":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"large":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"}],"search_metadata":{"completed_in":0.075,"max_id":701900434420736000,"max_id_str":"701900434420736000","next_results":"?max_id=701900350413008896&q=technology&include_entities=1","query":"technology","refresh_url":"?since_id=701900434420736000&q=technology&include_entities=1","count":15,"since_id":0,"since_id_str":"0"}}'

But that's not helpful. We can extract it in python's representation of json with the json method:


In [24]:
r.json()


Out[24]:
{'search_metadata': {'completed_in': 0.075,
  'count': 15,
  'max_id': 701900434420736000,
  'max_id_str': '701900434420736000',
  'next_results': '?max_id=701900350413008896&q=technology&include_entities=1',
  'query': 'technology',
  'refresh_url': '?since_id=701900434420736000&q=technology&include_entities=1',
  'since_id': 0,
  'since_id_str': '0'},
 'statuses': [{'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:38 +0000 2016',
   'entities': {'hashtags': [],
    'symbols': [],
    'urls': [{'display_url': 'nytimes.com/2016/02/23/tec…',
      'expanded_url': 'http://www.nytimes.com/2016/02/23/technology/fcc-internet-access-school.html?smid=tw-share',
      'indices': [139, 140],
      'url': 'https://t.co/6zbeEonnKW'}],
    'user_mentions': [{'id': 169099781,
      'id_str': '169099781',
      'indices': [3, 19],
      'name': 'Caroline R. Curran',
      'screen_name': 'CarolineRCurran'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900434420736000,
   'id_str': '701900434420736000',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 1,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Mon Feb 22 22:18:51 +0000 2016',
    'entities': {'hashtags': [],
     'symbols': [],
     'urls': [{'display_url': 'nytimes.com/2016/02/23/tec…',
       'expanded_url': 'http://www.nytimes.com/2016/02/23/technology/fcc-internet-access-school.html?smid=tw-share',
       'indices': [112, 135],
       'url': 'https://t.co/6zbeEonnKW'}],
     'user_mentions': []},
    'favorite_count': 1,
    'favorited': False,
    'geo': None,
    'id': 701893943521206272,
    'id_str': '701893943521206272',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 1,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': "Children without internet at home struggle to do homework. I've seen this myself. Teachers need to consider it!\nhttps://t.co/6zbeEonnKW",
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Wed Jul 21 15:01:05 +0000 2010',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'An intellectual says a simple thing in a hard way. \r\n An artist says a hard thing in a simple way. \r\n- Charles Bukowski',
     'entities': {'description': {'urls': []}},
     'favourites_count': 3053,
     'follow_request_sent': False,
     'followers_count': 411,
     'following': False,
     'friends_count': 133,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 169099781,
     'id_str': '169099781',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 23,
     'location': 'New York State',
     'name': 'Caroline R. Curran',
     'notifications': False,
     'profile_background_color': '08120B',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/579478899039469568/SNcCvojH.jpg',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/579478899039469568/SNcCvojH.jpg',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/169099781/1427157998',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/1212328961/compressed_blog_photo_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1212328961/compressed_blog_photo_normal.jpg',
     'profile_link_color': '0C8F06',
     'profile_sidebar_border_color': '000000',
     'profile_sidebar_fill_color': 'C6E0A3',
     'profile_text_color': '2F4020',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'CarolineRCurran',
     'statuses_count': 14697,
     'time_zone': 'Eastern Time (US & Canada)',
     'url': None,
     'utc_offset': -18000,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': "RT @CarolineRCurran: Children without internet at home struggle to do homework. I've seen this myself. Teachers need to consider it!\nhttps:…",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Wed Apr 28 19:46:17 +0000 2010',
    'default_profile': False,
    'default_profile_image': True,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 39690,
    'follow_request_sent': False,
    'followers_count': 103,
    'following': False,
    'friends_count': 127,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 138156405,
    'id_str': '138156405',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 23,
    'location': '',
    'name': 'Iamthetlj',
    'notifications': False,
    'profile_background_color': '0099B9',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme4/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme4/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png',
    'profile_image_url_https': 'https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png',
    'profile_link_color': '0099B9',
    'profile_sidebar_border_color': '5ED4DC',
    'profile_sidebar_fill_color': '95E8EC',
    'profile_text_color': '3C3940',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'Iamthetlj',
    'statuses_count': 5348,
    'time_zone': 'Central Time (US & Canada)',
    'url': None,
    'utc_offset': -21600,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:38 +0000 2016',
   'entities': {'hashtags': [{'indices': [16, 21], 'text': 'Game'}],
    'symbols': [],
    'urls': [{'display_url': 'dlvr.it/KZt2br',
      'expanded_url': 'http://dlvr.it/KZt2br',
      'indices': [90, 113],
      'url': 'https://t.co/Dy51uXceLO'}],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900432751235072,
   'id_str': '701900432751235072',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>',
   'text': 'Marfeel Unveils #Game-Changing AMP Compatibility Technology at Mobile World Congress 2016 https://t.co/Dy51uXceLO',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Mar 05 01:04:07 +0000 2013',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'Share about SEO, content, articles & news! https://t.co/tNLKVYG402',
    'entities': {'description': {'urls': [{'display_url': 'bit.ly/1QsNiq2',
        'expanded_url': 'http://bit.ly/1QsNiq2',
        'indices': [43, 66],
        'url': 'https://t.co/tNLKVYG402'}]},
     'url': {'urls': [{'display_url': 'bit.ly/1QsNiq2',
        'expanded_url': 'http://bit.ly/1QsNiq2',
        'indices': [0, 23],
        'url': 'https://t.co/tNLKVYG402'}]}},
    'favourites_count': 470,
    'follow_request_sent': False,
    'followers_count': 1355,
    'following': False,
    'friends_count': 2026,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 1242566725,
    'id_str': '1242566725',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 581,
    'location': '',
    'name': 'SEO Content',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/627524498028269568/D-RNm8CM_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/627524498028269568/D-RNm8CM_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': '_SEO_Content',
    'statuses_count': 10635,
    'time_zone': 'Pacific Time (US & Canada)',
    'url': 'https://t.co/tNLKVYG402',
    'utc_offset': -28800,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:37 +0000 2016',
   'entities': {'hashtags': [],
    'symbols': [],
    'urls': [{'display_url': 'bbc.co.uk/news/technolog…',
      'expanded_url': 'http://www.bbc.co.uk/news/technology-35628021',
      'indices': [62, 85],
      'url': 'https://t.co/DDrLEK43u0'}],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900428733239296,
   'id_str': '701900428733239296',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': "Forgive me, but isn't the disposable card a, umm, a battery?  https://t.co/DDrLEK43u0",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Wed Aug 19 07:07:28 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Boring.',
    'entities': {'description': {'urls': []}},
    'favourites_count': 407,
    'follow_request_sent': False,
    'followers_count': 192,
    'following': False,
    'friends_count': 222,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 66936421,
    'id_str': '66936421',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 15,
    'location': 'Exeter, UK',
    'name': 'Roger Adams',
    'notifications': False,
    'profile_background_color': '0099B9',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme4/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme4/bg.gif',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/66936421/1357509116',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1783272825/10_08_01_Mt_Ventoux_1wtx0e-CCD5_b_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1783272825/10_08_01_Mt_Ventoux_1wtx0e-CCD5_b_normal.jpg',
    'profile_link_color': '0099B9',
    'profile_sidebar_border_color': '5ED4DC',
    'profile_sidebar_fill_color': '95E8EC',
    'profile_text_color': '3C3940',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'hammerfeather',
    'statuses_count': 7148,
    'time_zone': 'Dublin',
    'url': None,
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:36 +0000 2016',
   'entities': {'hashtags': [],
    'symbols': [],
    'urls': [{'display_url': 'bbc.co.uk/news/technolog…',
      'expanded_url': 'http://www.bbc.co.uk/news/technology-35633915',
      'indices': [51, 74],
      'url': 'https://t.co/lApFbOJszD'}],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900425889320960,
   'id_str': '701900425889320960',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': "MWC 2016: Facebook uses AI to map people's homes - https://t.co/lApFbOJszD",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Thu Oct 27 21:50:42 +0000 2011',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'Neuralus is focused on producing software solutions that automate tasks that, until now, have resisted automation.',
    'entities': {'description': {'urls': []}},
    'favourites_count': 55,
    'follow_request_sent': False,
    'followers_count': 40,
    'following': False,
    'friends_count': 94,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 399687001,
    'id_str': '399687001',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 1,
    'location': '',
    'name': 'Neuralus',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/2158729716/image_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/2158729716/image_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'Neuralus',
    'statuses_count': 185,
    'time_zone': 'Central Time (US & Canada)',
    'url': None,
    'utc_offset': -21600,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:36 +0000 2016',
   'entities': {'hashtags': [],
    'symbols': [],
    'urls': [{'display_url': 'ift.tt/20RirDw',
      'expanded_url': 'http://ift.tt/20RirDw',
      'indices': [86, 109],
      'url': 'https://t.co/MUXrBNroCw'}],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900423628771334,
   'id_str': '701900423628771334',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://ifttt.com" rel="nofollow">IFTTT</a>',
   'text': '10 Things To Know. Connected cars are a preview to something much bigger than the car https://t.co/MUXrBNroCw',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Thu Jan 31 10:11:02 +0000 2013',
    'default_profile': True,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 12,
    'follow_request_sent': False,
    'followers_count': 110,
    'following': False,
    'friends_count': 0,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 1136595200,
    'id_str': '1136595200',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'de',
    'listed_count': 50,
    'location': '',
    'name': 'Jeannette',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1136595200/1359641066',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/695225326964756480/CraLr8N9_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/695225326964756480/CraLr8N9_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'Jeannette_Bot',
    'statuses_count': 54564,
    'time_zone': None,
    'url': None,
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:35 +0000 2016',
   'entities': {'hashtags': [],
    'media': [{'display_url': 'pic.twitter.com/KEVOWyYQFu',
      'expanded_url': 'http://twitter.com/AdrienneLaF/status/701878695330451456/photo/1',
      'id': 701878692855865344,
      'id_str': '701878692855865344',
      'indices': [108, 131],
      'media_url': 'http://pbs.twimg.com/media/Cb2S89MW4AAb9uR.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Cb2S89MW4AAb9uR.jpg',
      'sizes': {'large': {'h': 410, 'resize': 'fit', 'w': 615},
       'medium': {'h': 410, 'resize': 'fit', 'w': 615},
       'small': {'h': 410, 'resize': 'fit', 'w': 615},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 701878695330451456,
      'source_status_id_str': '701878695330451456',
      'source_user_id': 5548952,
      'source_user_id_str': '5548952',
      'type': 'photo',
      'url': 'https://t.co/KEVOWyYQFu'}],
    'symbols': [],
    'urls': [{'display_url': 'theatlantic.com/technology/arc…',
      'expanded_url': 'http://www.theatlantic.com/technology/archive/2016/02/bonkers-zuckerberg/470400/',
      'indices': [84, 107],
      'url': 'https://t.co/iHAbjP7t9I'}],
    'user_mentions': [{'id': 5548952,
      'id_str': '5548952',
      'indices': [3, 15],
      'name': 'Adrienne LaFrance',
      'screen_name': 'AdrienneLaF'},
     {'id': 6825792,
      'id_str': '6825792',
      'indices': [48, 56],
      'name': 'Ian Bogost',
      'screen_name': 'ibogost'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900418679488512,
   'id_str': '701900418679488512',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 18,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Mon Feb 22 21:18:15 +0000 2016',
    'entities': {'hashtags': [],
     'media': [{'display_url': 'pic.twitter.com/KEVOWyYQFu',
       'expanded_url': 'http://twitter.com/AdrienneLaF/status/701878695330451456/photo/1',
       'id': 701878692855865344,
       'id_str': '701878692855865344',
       'indices': [91, 114],
       'media_url': 'http://pbs.twimg.com/media/Cb2S89MW4AAb9uR.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/Cb2S89MW4AAb9uR.jpg',
       'sizes': {'large': {'h': 410, 'resize': 'fit', 'w': 615},
        'medium': {'h': 410, 'resize': 'fit', 'w': 615},
        'small': {'h': 410, 'resize': 'fit', 'w': 615},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/KEVOWyYQFu'}],
     'symbols': [],
     'urls': [{'display_url': 'theatlantic.com/technology/arc…',
       'expanded_url': 'http://www.theatlantic.com/technology/archive/2016/02/bonkers-zuckerberg/470400/',
       'indices': [67, 90],
       'url': 'https://t.co/iHAbjP7t9I'}],
     'user_mentions': [{'id': 6825792,
       'id_str': '6825792',
       'indices': [31, 39],
       'name': 'Ian Bogost',
       'screen_name': 'ibogost'}]},
    'favorite_count': 21,
    'favorited': False,
    'geo': None,
    'id': 701878695330451456,
    'id_str': '701878695330451456',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 18,
    'retweeted': False,
    'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    'text': 'Dystopia is an understatement. @ibogost, reporting from the future https://t.co/iHAbjP7t9I https://t.co/KEVOWyYQFu',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Fri Apr 27 09:18:00 +0000 2007',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Human, reporter, staff writer @TheAtlantic. Just one more question.',
     'entities': {'description': {'urls': []}},
     'favourites_count': 18657,
     'follow_request_sent': False,
     'followers_count': 8316,
     'following': False,
     'friends_count': 1859,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 5548952,
     'id_str': '5548952',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 473,
     'location': 'Pale Blue Dot',
     'name': 'Adrienne LaFrance',
     'notifications': False,
     'profile_background_color': '642D8B',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/552493352684236800/qCU1-6K7.jpeg',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/552493352684236800/qCU1-6K7.jpeg',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/5548952/1356716037',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/1130355015/Adrienne_LaFrance_normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1130355015/Adrienne_LaFrance_normal.jpeg',
     'profile_link_color': 'FF0000',
     'profile_sidebar_border_color': 'FFFFFF',
     'profile_sidebar_fill_color': '7AC3EE',
     'profile_text_color': '3D1957',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'AdrienneLaF',
     'statuses_count': 19962,
     'time_zone': 'Eastern Time (US & Canada)',
     'url': None,
     'utc_offset': -18000,
     'verified': True}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @AdrienneLaF: Dystopia is an understatement. @ibogost, reporting from the future https://t.co/iHAbjP7t9I https://t.co/KEVOWyYQFu',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Wed Dec 04 17:01:36 +0000 2013',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Casting a critical eye on corporate dreams and emerging technologies. James Auger and Julian Hanna.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'crapfutures.tumblr.com',
        'expanded_url': 'http://crapfutures.tumblr.com',
        'indices': [0, 23],
        'url': 'https://t.co/FhTbAE7vkR'}]}},
    'favourites_count': 85,
    'follow_request_sent': False,
    'followers_count': 246,
    'following': False,
    'friends_count': 225,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 2230218102,
    'id_str': '2230218102',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 10,
    'location': 'Madeira ',
    'name': 'Crap Futures',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme14/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme14/bg.gif',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2230218102/1447945254',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/667357585591443456/wKNc2UV6_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/667357585591443456/wKNc2UV6_normal.jpg',
    'profile_link_color': 'ABB8C2',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'crapfutures',
    'statuses_count': 153,
    'time_zone': 'London',
    'url': 'https://t.co/FhTbAE7vkR',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:30 +0000 2016',
   'entities': {'hashtags': [],
    'symbols': [],
    'urls': [{'display_url': 'bizjournals.com/atlanta/blog/a…',
      'expanded_url': 'http://www.bizjournals.com/atlanta/blog/atlantech/2016/02/who-made-tag-s-top-40-innovative-technology.html?ana=e_du_pap&s=article_du&ed=2016-02-22&u=jHeE6syKYI20ysNKasxB11B%2BHRB&t=1456175508',
      'indices': [124, 140],
      'url': 'https://t.co/uQ7E8cCO73'}],
    'user_mentions': [{'id': 28126953,
      'id_str': '28126953',
      'indices': [3, 18],
      'name': 'Cox Enterprises',
      'screen_name': 'CoxEnterprises'},
     {'id': 2774529913,
      'id_str': '2774529913',
      'indices': [32, 46],
      'name': 'Cox Automotive',
      'screen_name': 'CoxAutomotive'},
     {'id': 47421744,
      'id_str': '47421744',
      'indices': [113, 122],
      'name': 'TAG',
      'screen_name': 'TAGthink'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900401004556289,
   'id_str': '701900401004556289',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Mon Feb 22 21:14:24 +0000 2016',
    'entities': {'hashtags': [],
     'symbols': [],
     'urls': [{'display_url': 'bizjournals.com/atlanta/blog/a…',
       'expanded_url': 'http://www.bizjournals.com/atlanta/blog/atlantech/2016/02/who-made-tag-s-top-40-innovative-technology.html?ana=e_du_pap&s=article_du&ed=2016-02-22&u=jHeE6syKYI20ysNKasxB11B%2BHRB&t=1456175508',
       'indices': [104, 127],
       'url': 'https://t.co/uQ7E8cCO73'}],
     'user_mentions': [{'id': 2774529913,
       'id_str': '2774529913',
       'indices': [12, 26],
       'name': 'Cox Automotive',
       'screen_name': 'CoxAutomotive'},
      {'id': 47421744,
       'id_str': '47421744',
       'indices': [93, 102],
       'name': 'TAG',
       'screen_name': 'TAGthink'}]},
    'favorite_count': 6,
    'favorited': False,
    'geo': None,
    'id': 701877723308883969,
    'id_str': '701877723308883969',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': "Congrats to @CoxAutomotive for being named one of Georgia's top innovative tech companies by @TAGthink! https://t.co/uQ7E8cCO73",
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Wed Apr 01 15:33:57 +0000 2009',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Leading communications, media & automotive services company; $18B revenue & 55,000 employees; Spokesperson: Elizabeth Olmstead (678-645-0762)',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'coxinc.com',
         'expanded_url': 'http://www.coxinc.com',
         'indices': [0, 22],
         'url': 'http://t.co/cT6TVsFmWn'}]}},
     'favourites_count': 432,
     'follow_request_sent': False,
     'followers_count': 4732,
     'following': False,
     'friends_count': 1229,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 28126953,
     'id_str': '28126953',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 153,
     'location': 'Atlanta',
     'name': 'Cox Enterprises',
     'notifications': False,
     'profile_background_color': '9AE4E8',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/458968919621918721/cZAjD0_H.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/458968919621918721/cZAjD0_H.png',
     'profile_background_tile': True,
     'profile_image_url': 'http://pbs.twimg.com/profile_images/539409892600074240/VhkePoVT_normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/539409892600074240/VhkePoVT_normal.jpeg',
     'profile_link_color': '003CB3',
     'profile_sidebar_border_color': 'FFFFFF',
     'profile_sidebar_fill_color': 'DDFFCC',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'CoxEnterprises',
     'statuses_count': 4949,
     'time_zone': 'Quito',
     'url': 'http://t.co/cT6TVsFmWn',
     'utc_offset': -18000,
     'verified': False}},
   'source': '<a href="http://127.0.0.1" rel="nofollow">58d28394858d92b2668d01879cf3c222</a>',
   'text': "RT @CoxEnterprises: Congrats to @CoxAutomotive for being named one of Georgia's top innovative tech companies by @TAGthink! https://t.co/uQ…",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Mar 17 20:51:14 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Founder of ETR, ETR&D, vLAB & ESP. Market researcher, data scientist, Startup Advocate/Mentor. Husband to an incredible Maracucha & Dad to dos loquitos.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'etrd.com',
        'expanded_url': 'http://etrd.com',
        'indices': [0, 23],
        'url': 'https://t.co/qWM1eBgc8D'}]}},
    'favourites_count': 1334,
    'follow_request_sent': False,
    'followers_count': 637,
    'following': False,
    'friends_count': 2047,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 24951958,
    'id_str': '24951958',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 100,
    'location': 'NYC',
    'name': 'Thomas DelVecchio',
    'notifications': False,
    'profile_background_color': '242424',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme5/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme5/bg.gif',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/24951958/1455651686',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/577677124414390273/BVI0mw3b_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/577677124414390273/BVI0mw3b_normal.jpeg',
    'profile_link_color': '297CA9',
    'profile_sidebar_border_color': 'FFFFFF',
    'profile_sidebar_fill_color': '99CC33',
    'profile_text_color': '3E4415',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'tdelvecchio',
    'statuses_count': 809,
    'time_zone': 'Eastern Time (US & Canada)',
    'url': 'https://t.co/qWM1eBgc8D',
    'utc_offset': -18000,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:26 +0000 2016',
   'entities': {'hashtags': [{'indices': [62, 69], 'text': 'Europe'}],
    'media': [{'display_url': 'pic.twitter.com/2iLtKanDC5',
      'expanded_url': 'http://twitter.com/PIRegistry/status/697418852951531520/photo/1',
      'id': 697418852347547648,
      'id_str': '697418852347547648',
      'indices': [95, 118],
      'media_url': 'http://pbs.twimg.com/media/Ca26wEnWEAAwxtQ.png',
      'media_url_https': 'https://pbs.twimg.com/media/Ca26wEnWEAAwxtQ.png',
      'sizes': {'large': {'h': 314, 'resize': 'fit', 'w': 681},
       'medium': {'h': 277, 'resize': 'fit', 'w': 600},
       'small': {'h': 157, 'resize': 'fit', 'w': 340},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 697418852951531520,
      'source_status_id_str': '697418852951531520',
      'source_user_id': 1091109457,
      'source_user_id_str': '1091109457',
      'type': 'photo',
      'url': 'https://t.co/2iLtKanDC5'}],
    'symbols': [],
    'urls': [{'display_url': 'techreport.ngo',
      'expanded_url': 'http://techreport.ngo',
      'indices': [71, 94],
      'url': 'https://t.co/ISOK1kHZpa'}],
    'user_mentions': [{'id': 1091109457,
      'id_str': '1091109457',
      'indices': [3, 14],
      'name': 'Public Interest Reg.',
      'screen_name': 'PIRegistry'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900383988412416,
   'id_str': '701900383988412416',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 380,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Wed Feb 10 13:56:26 +0000 2016',
    'entities': {'hashtags': [{'indices': [46, 53], 'text': 'Europe'}],
     'media': [{'display_url': 'pic.twitter.com/2iLtKanDC5',
       'expanded_url': 'http://twitter.com/PIRegistry/status/697418852951531520/photo/1',
       'id': 697418852347547648,
       'id_str': '697418852347547648',
       'indices': [79, 102],
       'media_url': 'http://pbs.twimg.com/media/Ca26wEnWEAAwxtQ.png',
       'media_url_https': 'https://pbs.twimg.com/media/Ca26wEnWEAAwxtQ.png',
       'sizes': {'large': {'h': 314, 'resize': 'fit', 'w': 681},
        'medium': {'h': 277, 'resize': 'fit', 'w': 600},
        'small': {'h': 157, 'resize': 'fit', 'w': 340},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/2iLtKanDC5'}],
     'symbols': [],
     'urls': [{'display_url': 'techreport.ngo',
       'expanded_url': 'http://techreport.ngo',
       'indices': [55, 78],
       'url': 'https://t.co/ISOK1kHZpa'}],
     'user_mentions': []},
    'favorite_count': 1024,
    'favorited': False,
    'geo': None,
    'id': 697418852951531520,
    'id_str': '697418852951531520',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 380,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': '2016 Online Technology Benchmarks for NGOs in #Europe: https://t.co/ISOK1kHZpa https://t.co/2iLtKanDC5',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Tue Jan 15 05:18:09 +0000 2013',
     'default_profile': False,
     'default_profile_image': False,
     'description': "Helping empower, through the Internet, those who dedicate themselves to improving our world. We're the people behind the .ORG, .NGO and .ONG domain names.",
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'pir.org',
         'expanded_url': 'http://www.pir.org',
         'indices': [0, 22],
         'url': 'http://t.co/NXfKkbXKEH'}]}},
     'favourites_count': 1829,
     'follow_request_sent': False,
     'followers_count': 105746,
     'following': False,
     'friends_count': 1282,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 1091109457,
     'id_str': '1091109457',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 199,
     'location': 'To the right of the dot ;)',
     'name': 'Public Interest Reg.',
     'notifications': False,
     'profile_background_color': '173B4F',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/378800000164236821/3ClbxHmi.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/378800000164236821/3ClbxHmi.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1091109457/1424114837',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/567321530980261888/1nsdkMSj_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/567321530980261888/1nsdkMSj_normal.png',
     'profile_link_color': '50C78C',
     'profile_sidebar_border_color': 'FFFFFF',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'PIRegistry',
     'statuses_count': 4487,
     'time_zone': 'Eastern Time (US & Canada)',
     'url': 'http://t.co/NXfKkbXKEH',
     'utc_offset': -18000,
     'verified': True}},
   'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   'text': 'RT @PIRegistry: 2016 Online Technology Benchmarks for NGOs in #Europe: https://t.co/ISOK1kHZpa https://t.co/2iLtKanDC5',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Nov 18 19:00:43 +0000 2014',
    'default_profile': True,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 52,
    'follow_request_sent': False,
    'followers_count': 725,
    'following': False,
    'friends_count': 610,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 2882959119,
    'id_str': '2882959119',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 18,
    'location': '',
    'name': '#Me Of Cause',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2882959119/1450138977',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/690313986299039745/abddG2m3_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/690313986299039745/abddG2m3_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'Its_coolmusty',
    'statuses_count': 21148,
    'time_zone': None,
    'url': None,
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:26 +0000 2016',
   'entities': {'hashtags': [],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 1,
   'favorited': False,
   'geo': None,
   'id': 701900381475962881,
   'id_str': '701900381475962881',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   'text': "I'm becoming super excited about technology and the ability to create",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Thu Feb 06 04:23:33 +0000 2014',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'NEW‼️ GLO FREESTYLE https://t.co/Ah0OTr0YKJ',
    'entities': {'description': {'urls': [{'display_url': 'soundcloud.com/filthyrichvee/…',
        'expanded_url': 'https://soundcloud.com/filthyrichvee/glo-feat-cardiak-blaze',
        'indices': [20, 43],
        'url': 'https://t.co/Ah0OTr0YKJ'}]}},
    'favourites_count': 10519,
    'follow_request_sent': False,
    'followers_count': 471,
    'following': False,
    'friends_count': 284,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 2327346707,
    'id_str': '2327346707',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 7,
    'location': '',
    'name': 'Emojicon John',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2327346707/1454964755',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/697462795709894656/vdLr77r__normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/697462795709894656/vdLr77r__normal.jpg',
    'profile_link_color': 'DD2E44',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'CardiakBlaze',
    'statuses_count': 21363,
    'time_zone': None,
    'url': None,
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:22 +0000 2016',
   'entities': {'hashtags': [],
    'media': [{'display_url': 'pic.twitter.com/mjK4cDZQLG',
      'expanded_url': 'http://twitter.com/ezbodydetox/status/701900366359695361/photo/1',
      'id': 701900365743071235,
      'id_str': '701900365743071235',
      'indices': [103, 126],
      'media_url': 'http://pbs.twimg.com/media/Cb2mqe_VIAM9BNb.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Cb2mqe_VIAM9BNb.jpg',
      'sizes': {'large': {'h': 542, 'resize': 'fit', 'w': 620},
       'medium': {'h': 542, 'resize': 'fit', 'w': 620},
       'small': {'h': 542, 'resize': 'fit', 'w': 620},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'type': 'photo',
      'url': 'https://t.co/mjK4cDZQLG'}],
    'symbols': [],
    'urls': [{'display_url': 'easybodydetox.com/heavy-metal-de…',
      'expanded_url': 'http://easybodydetox.com/heavy-metal-detox/',
      'indices': [79, 102],
      'url': 'https://t.co/wcvPDngkZl'}],
    'user_mentions': []},
   'favorite_count': 1,
   'favorited': False,
   'geo': None,
   'id': 701900366359695361,
   'id_str': '701900366359695361',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'As the world continues to innovate and technology continues to improve, our... https://t.co/wcvPDngkZl https://t.co/mjK4cDZQLG',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Feb 02 18:30:13 +0000 2016',
    'default_profile': True,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'easybodydetox.com',
        'expanded_url': 'http://easybodydetox.com',
        'indices': [0, 23],
        'url': 'https://t.co/JGzi7PJmVU'}]}},
    'favourites_count': 0,
    'follow_request_sent': False,
    'followers_count': 0,
    'following': False,
    'friends_count': 0,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 4850430361,
    'id_str': '4850430361',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 0,
    'location': '',
    'name': 'Easy Body Detox',
    'notifications': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4850430361/1454973832',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/695325841300025344/v9XvTvL1_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/695325841300025344/v9XvTvL1_normal.png',
    'profile_link_color': '2B7BB9',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'ezbodydetox',
    'statuses_count': 6,
    'time_zone': 'Eastern Time (US & Canada)',
    'url': 'https://t.co/JGzi7PJmVU',
    'utc_offset': -18000,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:22 +0000 2016',
   'entities': {'hashtags': [],
    'media': [{'display_url': 'pic.twitter.com/cVOznjxYvS',
      'expanded_url': 'http://twitter.com/a_brick_field/status/701900364140810241/photo/1',
      'id': 701900363138334720,
      'id_str': '701900363138334720',
      'indices': [117, 140],
      'media_url': 'http://pbs.twimg.com/media/Cb2mqVSUAAAtPlE.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Cb2mqVSUAAAtPlE.jpg',
      'sizes': {'large': {'h': 252, 'resize': 'fit', 'w': 484},
       'medium': {'h': 252, 'resize': 'fit', 'w': 484},
       'small': {'h': 252, 'resize': 'fit', 'w': 484},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'type': 'photo',
      'url': 'https://t.co/cVOznjxYvS'}],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900364140810241,
   'id_str': '701900364140810241',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': '"In the age of advanced technology, spiritual devastation is more likely to come from an enemy with a smiling face." https://t.co/cVOznjxYvS',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Thu Oct 02 15:42:32 +0000 2014',
    'default_profile': False,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 6,
    'follow_request_sent': False,
    'followers_count': 24,
    'following': False,
    'friends_count': 179,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 2800241771,
    'id_str': '2800241771',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 1,
    'location': 'District of Columbia, USA',
    'name': 'Andrew Brickfield',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2800241771/1412267113',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/632691847316549633/l3ONklaS_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/632691847316549633/l3ONklaS_normal.jpg',
    'profile_link_color': '89C9FA',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'a_brick_field',
    'statuses_count': 245,
    'time_zone': 'Pacific Time (US & Canada)',
    'url': None,
    'utc_offset': -28800,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:20 +0000 2016',
   'entities': {'hashtags': [{'indices': [61, 70], 'text': 'theneeds'},
     {'indices': [71, 82], 'text': 'Technology'}],
    'symbols': [],
    'urls': [{'display_url': 'theneeds.com/news/n11372825…',
      'expanded_url': 'http://www.theneeds.com/news/n11372825/in-this-parody-there-s-no-thing-cnet?utm_source=twitter&utm_medium=social&utm_campaign=_news&utm_content=share_0news',
      'indices': [83, 106],
      'url': 'https://t.co/wWvVWzKneg'}],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900358071660544,
   'id_str': '701900358071660544',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://www.theneeds.com" rel="nofollow">theneeds_news2</a>',
   'text': "In this parody, there's no thing in this world J.J... Hot on #theneeds #Technology https://t.co/wWvVWzKneg",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sun Sep 15 21:46:56 +0000 2013',
    'default_profile': True,
    'default_profile_image': False,
    'description': '#Discover and discuss all the web’s #News in one place with people just like you. http://t.co/xmJYPwpTGF! #USNews #Politics #World #Economy #Technology ...',
    'entities': {'description': {'urls': [{'display_url': 'theneeds.com',
        'expanded_url': 'http://www.theneeds.com',
        'indices': [82, 104],
        'url': 'http://t.co/xmJYPwpTGF'}]},
     'url': {'urls': [{'display_url': 'theneeds.com',
        'expanded_url': 'http://theneeds.com',
        'indices': [0, 22],
        'url': 'http://t.co/1SsP3f5Iz4'}]}},
    'favourites_count': 18151,
    'follow_request_sent': False,
    'followers_count': 691,
    'following': False,
    'friends_count': 53,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 1869348505,
    'id_str': '1869348505',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 117,
    'location': 'San Francisco',
    'name': 'Theneeds BeInformed',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1869348505/1379314533',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/378800000465263029/928102c0591b99272de5a75cd5ca1d2b_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/378800000465263029/928102c0591b99272de5a75cd5ca1d2b_normal.png',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'theneeds_news',
    'statuses_count': 15530,
    'time_zone': 'Pacific Time (US & Canada)',
    'url': 'http://t.co/1SsP3f5Iz4',
    'utc_offset': -28800,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:19 +0000 2016',
   'entities': {'hashtags': [],
    'symbols': [],
    'urls': [{'display_url': 'lnkd.in/e5TqWRE',
      'expanded_url': 'https://lnkd.in/e5TqWRE',
      'indices': [58, 81],
      'url': 'https://t.co/JwVqBsxg1J'}],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900354300940290,
   'id_str': '701900354300940290',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>',
   'text': 'Make your Career with Top Healthcare Technology Company - https://t.co/JwVqBsxg1J',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Oct 21 07:30:38 +0000 2008',
    'default_profile': True,
    'default_profile_image': True,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 0,
    'follow_request_sent': False,
    'followers_count': 11,
    'following': False,
    'friends_count': 7,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 16882750,
    'id_str': '16882750',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 0,
    'location': '',
    'name': 'nvgarnichaud',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png',
    'profile_image_url_https': 'https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'nvgarnichaud',
    'statuses_count': 38,
    'time_zone': None,
    'url': None,
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:19 +0000 2016',
   'entities': {'hashtags': [{'indices': [0, 11], 'text': 'technology'}],
    'media': [{'display_url': 'pic.twitter.com/waXIzkQoQP',
      'expanded_url': 'http://twitter.com/bzdt3/status/701900352317169667/photo/1',
      'id': 701900352174612480,
      'id_str': '701900352174612480',
      'indices': [98, 121],
      'media_url': 'http://pbs.twimg.com/media/Cb2mpscW4AA0I_5.png',
      'media_url_https': 'https://pbs.twimg.com/media/Cb2mpscW4AA0I_5.png',
      'sizes': {'large': {'h': 467, 'resize': 'fit', 'w': 640},
       'medium': {'h': 467, 'resize': 'fit', 'w': 640},
       'small': {'h': 467, 'resize': 'fit', 'w': 640},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'type': 'photo',
      'url': 'https://t.co/waXIzkQoQP'}],
    'symbols': [],
    'urls': [{'display_url': 'ift.tt/21a9NWg',
      'expanded_url': 'http://ift.tt/21a9NWg',
      'indices': [74, 97],
      'url': 'https://t.co/5ALlvN9QIh'}],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900352317169667,
   'id_str': '701900352317169667',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://ifttt.com" rel="nofollow">IFTTT</a>',
   'text': '#technology: Google Fiber joins forces with municipal broadband network | https://t.co/5ALlvN9QIh https://t.co/waXIzkQoQP',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sun Mar 01 20:54:09 +0000 2015',
    'default_profile': False,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 0,
    'follow_request_sent': False,
    'followers_count': 333,
    'following': False,
    'friends_count': 0,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 3065813609,
    'id_str': '3065813609',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 183,
    'location': '',
    'name': 'r/',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/572151330936864768/IgBxxpa3_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/572151330936864768/IgBxxpa3_normal.png',
    'profile_link_color': '3B94D9',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'bzdt3',
    'statuses_count': 151141,
    'time_zone': None,
    'url': None,
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Mon Feb 22 22:44:18 +0000 2016',
   'entities': {'hashtags': [{'indices': [0, 14], 'text': 'Entertainment'},
     {'indices': [15, 20], 'text': 'Buzz'},
     {'indices': [21, 28], 'text': 'Gossip'},
     {'indices': [29, 34], 'text': 'Tech'},
     {'indices': [35, 46], 'text': 'Technology'}],
    'media': [{'display_url': 'pic.twitter.com/Uh05Nqbfbo',
      'expanded_url': 'http://twitter.com/VisvyaMedia/status/701900350413008897/photo/1',
      'id': 701900350266200065,
      'id_str': '701900350266200065',
      'indices': [116, 139],
      'media_url': 'http://pbs.twimg.com/media/Cb2mplVW0AEiy8N.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Cb2mplVW0AEiy8N.jpg',
      'sizes': {'large': {'h': 360, 'resize': 'fit', 'w': 480},
       'medium': {'h': 360, 'resize': 'fit', 'w': 480},
       'small': {'h': 360, 'resize': 'fit', 'w': 480},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'type': 'photo',
      'url': 'https://t.co/Uh05Nqbfbo'}],
    'symbols': [],
    'urls': [{'display_url': 'bit.ly/1KFfnZk',
      'expanded_url': 'http://bit.ly/1KFfnZk',
      'indices': [47, 70],
      'url': 'https://t.co/WheOVupwzt'}],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 701900350413008897,
   'id_str': '701900350413008897',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'in',
   'metadata': {'iso_language_code': 'in', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://ifttt.com" rel="nofollow">IFTTT</a>',
   'text': '#Entertainment #Buzz #Gossip #Tech #Technology https://t.co/WheOVupwzt Irudhi Suttru Tamil Movie | Back-to-Back De… https://t.co/Uh05Nqbfbo',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sun Jul 29 01:53:16 +0000 2012',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Watch Live News Channel,Film Reviews,Film Song,Full Movies,Official Film Trailers, Comedy and Short Film Online. Visit https://t.co/xd7iw6w3dw',
    'entities': {'description': {'urls': [{'display_url': 'visvya.com',
        'expanded_url': 'http://www.visvya.com',
        'indices': [119, 142],
        'url': 'https://t.co/xd7iw6w3dw'}]},
     'url': {'urls': [{'display_url': 'visvya.com',
        'expanded_url': 'http://www.visvya.com',
        'indices': [0, 23],
        'url': 'https://t.co/xd7iw6w3dw'}]}},
    'favourites_count': 0,
    'follow_request_sent': False,
    'followers_count': 9,
    'following': False,
    'friends_count': 0,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 723170486,
    'id_str': '723170486',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 20,
    'location': '',
    'name': 'Visvya Media',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/617346119/d479b2fgtei0qzp7khvo.jpeg',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/617346119/d479b2fgtei0qzp7khvo.jpeg',
    'profile_background_tile': True,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/723170486/1455983464',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/701071634757771264/wM6t0fe0_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/701071634757771264/wM6t0fe0_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'VisvyaMedia',
    'statuses_count': 422,
    'time_zone': 'Chennai',
    'url': 'https://t.co/xd7iw6w3dw',
    'utc_offset': 19800,
    'verified': False}}]}

This has some helpful metadata about our request, like a url where we can get the next batch of results from Twitter for the same query:


In [26]:
data = r.json()
data['search_metadata']


Out[26]:
{'completed_in': 0.075,
 'count': 15,
 'max_id': 701900434420736000,
 'max_id_str': '701900434420736000',
 'next_results': '?max_id=701900350413008896&q=technology&include_entities=1',
 'query': 'technology',
 'refresh_url': '?since_id=701900434420736000&q=technology&include_entities=1',
 'since_id': 0,
 'since_id_str': '0'}

The tweets that we want are under the key "statuses"


In [30]:
statuses = data['statuses']
statuses[0]


Out[30]:
{'contributors': None,
 'coordinates': None,
 'created_at': 'Mon Feb 22 22:44:38 +0000 2016',
 'entities': {'hashtags': [],
  'symbols': [],
  'urls': [{'display_url': 'nytimes.com/2016/02/23/tec…',
    'expanded_url': 'http://www.nytimes.com/2016/02/23/technology/fcc-internet-access-school.html?smid=tw-share',
    'indices': [139, 140],
    'url': 'https://t.co/6zbeEonnKW'}],
  'user_mentions': [{'id': 169099781,
    'id_str': '169099781',
    'indices': [3, 19],
    'name': 'Caroline R. Curran',
    'screen_name': 'CarolineRCurran'}]},
 'favorite_count': 0,
 'favorited': False,
 'geo': None,
 'id': 701900434420736000,
 'id_str': '701900434420736000',
 'in_reply_to_screen_name': None,
 'in_reply_to_status_id': None,
 'in_reply_to_status_id_str': None,
 'in_reply_to_user_id': None,
 'in_reply_to_user_id_str': None,
 'is_quote_status': False,
 'lang': 'en',
 'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
 'place': None,
 'possibly_sensitive': False,
 'retweet_count': 1,
 'retweeted': False,
 'retweeted_status': {'contributors': None,
  'coordinates': None,
  'created_at': 'Mon Feb 22 22:18:51 +0000 2016',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [{'display_url': 'nytimes.com/2016/02/23/tec…',
     'expanded_url': 'http://www.nytimes.com/2016/02/23/technology/fcc-internet-access-school.html?smid=tw-share',
     'indices': [112, 135],
     'url': 'https://t.co/6zbeEonnKW'}],
   'user_mentions': []},
  'favorite_count': 1,
  'favorited': False,
  'geo': None,
  'id': 701893943521206272,
  'id_str': '701893943521206272',
  'in_reply_to_screen_name': None,
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'is_quote_status': False,
  'lang': 'en',
  'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
  'place': None,
  'possibly_sensitive': False,
  'retweet_count': 1,
  'retweeted': False,
  'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
  'text': "Children without internet at home struggle to do homework. I've seen this myself. Teachers need to consider it!\nhttps://t.co/6zbeEonnKW",
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Wed Jul 21 15:01:05 +0000 2010',
   'default_profile': False,
   'default_profile_image': False,
   'description': 'An intellectual says a simple thing in a hard way. \r\n An artist says a hard thing in a simple way. \r\n- Charles Bukowski',
   'entities': {'description': {'urls': []}},
   'favourites_count': 3053,
   'follow_request_sent': False,
   'followers_count': 411,
   'following': False,
   'friends_count': 133,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 169099781,
   'id_str': '169099781',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 23,
   'location': 'New York State',
   'name': 'Caroline R. Curran',
   'notifications': False,
   'profile_background_color': '08120B',
   'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/579478899039469568/SNcCvojH.jpg',
   'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/579478899039469568/SNcCvojH.jpg',
   'profile_background_tile': True,
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/169099781/1427157998',
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1212328961/compressed_blog_photo_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1212328961/compressed_blog_photo_normal.jpg',
   'profile_link_color': '0C8F06',
   'profile_sidebar_border_color': '000000',
   'profile_sidebar_fill_color': 'C6E0A3',
   'profile_text_color': '2F4020',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'CarolineRCurran',
   'statuses_count': 14697,
   'time_zone': 'Eastern Time (US & Canada)',
   'url': None,
   'utc_offset': -18000,
   'verified': False}},
 'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 'text': "RT @CarolineRCurran: Children without internet at home struggle to do homework. I've seen this myself. Teachers need to consider it!\nhttps:…",
 'truncated': False,
 'user': {'contributors_enabled': False,
  'created_at': 'Wed Apr 28 19:46:17 +0000 2010',
  'default_profile': False,
  'default_profile_image': True,
  'description': '',
  'entities': {'description': {'urls': []}},
  'favourites_count': 39690,
  'follow_request_sent': False,
  'followers_count': 103,
  'following': False,
  'friends_count': 127,
  'geo_enabled': False,
  'has_extended_profile': False,
  'id': 138156405,
  'id_str': '138156405',
  'is_translation_enabled': False,
  'is_translator': False,
  'lang': 'en',
  'listed_count': 23,
  'location': '',
  'name': 'Iamthetlj',
  'notifications': False,
  'profile_background_color': '0099B9',
  'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme4/bg.gif',
  'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme4/bg.gif',
  'profile_background_tile': False,
  'profile_image_url': 'http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png',
  'profile_image_url_https': 'https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png',
  'profile_link_color': '0099B9',
  'profile_sidebar_border_color': '5ED4DC',
  'profile_sidebar_fill_color': '95E8EC',
  'profile_text_color': '3C3940',
  'profile_use_background_image': True,
  'protected': False,
  'screen_name': 'Iamthetlj',
  'statuses_count': 5348,
  'time_zone': 'Central Time (US & Canada)',
  'url': None,
  'utc_offset': -21600,
  'verified': False}}

This is one tweet.

Depending on which tweet this is, you may or may not see that Twitter automatically pulls out links and mentions and gives you their index location in the raw tweet string

Twitter gives you a whole lot of information about their users, including geographical coordinates, the device they are tweeting from, and links to their photographs.

Twitter supports what it calls query operators, which modify the search behavior. For example, if you want to search for tweets where a particular user is mentioned, include the at-sign, @, followed by the username. To search for tweets sent to a particular user, use to:username. For tweets from a particular user, from:username. For hashtags, use #hashtag.

For a complete set of options: https://dev.twitter.com/rest/public/search.

Let's try a more complicated search:


In [39]:
r = twitter.get(search, params={
        'q' : 'happy',
        'geocode' : '37.8734855,-122.2597169,10mi'
    })
r.ok


Out[39]:
True

In [40]:
statuses = r.json()['statuses']
statuses[0]


Out[40]:
{'contributors': None,
 'coordinates': {'coordinates': [-122.38943123, 37.79013755], 'type': 'Point'},
 'created_at': 'Mon Feb 22 22:12:00 +0000 2016',
 'entities': {'hashtags': [],
  'symbols': [],
  'urls': [{'display_url': 'instagram.com/p/BCGtfWZkEC1/',
    'expanded_url': 'https://www.instagram.com/p/BCGtfWZkEC1/',
    'indices': [92, 115],
    'url': 'https://t.co/1rl5SeLAcb'}],
  'user_mentions': [{'id': 74535797,
    'id_str': '74535797',
    'indices': [74, 84],
    'name': 'Lizzie Bermudez',
    'screen_name': 'LizzieBtv'}]},
 'favorite_count': 0,
 'favorited': False,
 'geo': {'coordinates': [37.79013755, -122.38943123], 'type': 'Point'},
 'id': 701892219326898176,
 'id_str': '701892219326898176',
 'in_reply_to_screen_name': None,
 'in_reply_to_status_id': None,
 'in_reply_to_status_id_str': None,
 'in_reply_to_user_id': None,
 'in_reply_to_user_id_str': None,
 'is_quote_status': False,
 'lang': 'en',
 'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
 'place': {'attributes': {},
  'bounding_box': {'coordinates': [[[-122.514926, 37.708075],
     [-122.357031, 37.708075],
     [-122.357031, 37.833238],
     [-122.514926, 37.833238]]],
   'type': 'Polygon'},
  'contained_within': [],
  'country': 'United States',
  'country_code': 'US',
  'full_name': 'San Francisco, CA',
  'id': '5a110d312052166f',
  'name': 'San Francisco',
  'place_type': 'city',
  'url': 'https://api.twitter.com/1.1/geo/id/5a110d312052166f.json'},
 'possibly_sensitive': False,
 'retweet_count': 0,
 'retweeted': False,
 'source': '<a href="http://instagram.com" rel="nofollow">Instagram</a>',
 'text': "It's a gorgeous day in SF! Happy to have had lunch today with the awesome @lizziebtv. It's… https://t.co/1rl5SeLAcb",
 'truncated': False,
 'user': {'contributors_enabled': False,
  'created_at': 'Fri Mar 21 03:30:36 +0000 2008',
  'default_profile': False,
  'default_profile_image': False,
  'description': 'Social media strategist. Speaker. Blogger @HuffingtonPost. Founder #GetSocialSmart. Periscoper. Wine lover. Family comes 1st! #NoTweetLeftBehind',
  'entities': {'description': {'urls': []},
   'url': {'urls': [{'display_url': 'katielance.com',
      'expanded_url': 'http://katielance.com',
      'indices': [0, 23],
      'url': 'https://t.co/o6ZJ6TbyMI'}]}},
  'favourites_count': 11188,
  'follow_request_sent': False,
  'followers_count': 26292,
  'following': False,
  'friends_count': 10429,
  'geo_enabled': True,
  'has_extended_profile': False,
  'id': 14189292,
  'id_str': '14189292',
  'is_translation_enabled': False,
  'is_translator': False,
  'lang': 'en',
  'listed_count': 1400,
  'location': 'San Francisco Bay Area',
  'name': 'Katie Lance',
  'notifications': False,
  'profile_background_color': '0099B9',
  'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/378800000162729050/e8X6q5p6.jpeg',
  'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/378800000162729050/e8X6q5p6.jpeg',
  'profile_background_tile': False,
  'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14189292/1454961486',
  'profile_image_url': 'http://pbs.twimg.com/profile_images/691493422469767169/Yii7ODzI_normal.jpg',
  'profile_image_url_https': 'https://pbs.twimg.com/profile_images/691493422469767169/Yii7ODzI_normal.jpg',
  'profile_link_color': '0099B9',
  'profile_sidebar_border_color': 'FFFFFF',
  'profile_sidebar_fill_color': '95E8EC',
  'profile_text_color': '3C3940',
  'profile_use_background_image': True,
  'protected': False,
  'screen_name': 'katielance',
  'statuses_count': 60854,
  'time_zone': 'Pacific Time (US & Canada)',
  'url': 'https://t.co/o6ZJ6TbyMI',
  'utc_offset': -28800,
  'verified': False}}

If we want to store this data somewhere, we can output it as json using the json library from above. However, if you're doing a lot of these, you'll probaby want to use a database to handle everything.


In [42]:
with open('my_tweets.json', 'w') as f:
    json.dump(statuses, f)

To post tweets, we need to use a different endpoint:


In [43]:
post = "https://api.twitter.com/1.1/statuses/update.json"

And now we can pass a new tweet (remember, Twitter calls these 'statuses') as a parameter to our post request.


In [46]:
r = twitter.post(post, params={
        'status' : "I stole Juan's Twitter credentials"
    })
r.ok


Out[46]:
True

Other (optional) parameters include things like location, and replies.

Scheduling

The real beauty of bots is that they are designed to work without interaction or oversight. Imagine a situation where you want to automatically retweet everything coming out of the D-Lab's twitter account, "@DLabAtBerkeley". You could:

  1. spend the rest of your life glued to D-Lab's twitter page and hitting refresh; or,
  2. write a function

We're going to import a module called time that will pause our code, so that we don't hit Twitter's rate limit


In [47]:
import time

def retweet():
    r = twitter.get(search, {'q':'DLabAtBerkeley'})
    if r.ok:
        statuses = r.json()['statuses']
        for update in statuses:
            username = item['user']['screen_name']
            parameters = {'status':'HOORAY! @' + username}
            r = twitter.post(post, parameters)
            print(r.status_code, r.reason)
            time.sleep(5)

But you are a human that needs to eat, sleep, and be social with other humans. Luckily, Linux systems have a time-based daemon called cron that will run scripts like this for you.

People on windows and macs will not be able to run this. That's okay.

The way that cron works is it reads in files where each line has a time followed by a job (these are called cronjobs). You can edit your crontab by typing crontab -e into a terminal.

They looks like this:


In [49]:
with open('../etc/crontab_example', 'r') as f:
    print(f.read())


# In a user's crontab, jobs run under that user
# Time is specified as <min> <hour> <day> <month> <wday>
# To specify any time, use `*`
# For unknown reasons, cronjobs fail unless the tab ends with a newline

00 08 * * 1 echo "It is 8am on Monday" >> /var/dumblog

This is telling cron to print that statement to a file called "dumblog" at 8am every Monday.

It's generally frowned upon to enter jobs through crontabs because they are hard to modify without breaking them. The better solution is to put your timed command into a file and copy the file into /etc/cron.d/. These files look like this:


In [50]:
with open('../etc/crond_example', 'r') as f:
    print(f.read())


#!/bin/bash
# First, make sure you specify all of the paths that you might need to run
# your task. If you aren't sure, copy the entire $PATH variable

PATH=/home/dillon/.conda/envs/py27/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

# Then, specify when you want the task to occur; the user account to run it;
# and the job

@hourly dillon cd ~/scripts; python simple.py

At this point, you might be a little upset that you can't do this on your laptop, but the truth is you don't really want to run daemons and cronjobs on your laptop, which goes to sleep and runs out of batteries. This is what servers are for (like AWS).

Now it is time for you to make your own twitter bot!

To get you started, we've put a template in the scripts folder. Try it out, but be generous with your time.sleep() calls as the whole class is sharing this account.

If you have tried to run this, or some of the earlier code in this notebook, you have probably encountered some of Twitter's error codes. Here are the most common, and why you are triggering them.

  1. 400 = bad request - This means the API (middleman) doesn't like how you formatted your request. Check the API documentation to make sure you are doing things correctly.

  2. 401 = unauthorized - This either means you entered your auth codes incorrectly, or those auth codes don't have permission to do what you're trying to do. It takes Twitter a while to assign posting rights to your auth tokens after you've given them your phone number. If you have just done this, wait five minutes, then try again.

  3. 403 = forbidden - Twitter won't let you post what you are trying to post, most likely because you are trying to post the same tweet twice in a row within a few minutes of each other. Try changing your status update. If that doesn't fix it, then you are either:

    A. Hitting Twitter's daily posting limit. They don't say what this is.

    B. Trying to follow too many people, rapidly following and unfollowing the same person, or are otherwise making Twitter think you are a spambot

  4. 429 = too many requests - This means that you have exceeded Twitter's rate limit for whatever it is you are trying to do. Increase your time.sleep() value.

Considerate robots and legality

Typically, in starting a new web scraping project, you'll want to follow these steps:
1) Find the websites' robots.txt and do not access those pages through your bot
2) Make sure your bot does not make too many requests in a specific period (etc. by using Python's sleep.wait function)
3) Look up the website's term of use or terms of service.

We'll discuss each of these briefly.

What data owners care about

Data owners are concerned with:
1) Keeping their website up
2) Protecting the commercial value of their data

Their policies and responses differ with respect to these two areas. You'll need to do some research to determine what is appropriate with regards to your research.

1) Keeping their website up

Most commercial websites have strategies to throttle or block IPs that make too many requests within a fixed amount of time. Because a bot can make a large number of requests in a small amount of time (etc. entering 100 different terms into Google in one second), servers are able to determine if traffic is coming from a bot or a person (among many other methods). For companies that rely on advertising, like Google or Twitter, these requests do not represent "human eyeballs" and need to be filtered out from their bill to advertisers.

In order to keep their site up and running, companies may block your IP temporarily or permanently if they detect too many requests coming from your IP, or other signs that requests are being made by a bot instead of a person. If you systematically down a site (such as sending millions of requests to an official government site), there is the small chance your actions may be interpreted maliciously (and regarded as hacking), with risk of prosecution.

2) Protecting the commercial value of their data

Companies are also typically very protective of their data, especially data that ties directly into how they make money. A listings site (like Craigslist), for instance, would lose traffic if listings on its site were poached and transfered to a competitor, or if a rival company used scraping tools to derive lists of users to contact. For this reason, companies' term of use agreements are typically very restrictive of what you can do with their data.

Different companies may have a range of responses to your scraping, depending on what you do with the data. Typically, repurposing the data for a rival application or business will trigger a strong response from the company (i.e. legal attention). Publishing any analysis or results, either in a formal academic journal or on a blog or webpage, may be of less concern, though legal attention is still possible.

robots.txt: internet convention

The robots.txt file is typically located in the root folder of the site, with instructions to various services (User-agents) on what they are not allowed to scrape.

Typically, the robots.txt file is more geared towards search engines (and their crawlers) more than anything else.

However, companies and agencies typically will not want you to scrape any pages that they disallow search engines from accessing. Scraping these pages makes it more likely for your IP to be detected and blocked (along with other possible actions.)

Below is an example of reddit's robots.txt file: https://www.reddit.com/robots.txt

80legs

User-agent: 008 Disallow: /

User-Agent: bender Disallow: /my_shiny_metal_ass

User-Agent: Gort Disallow: /earth

User-Agent:
Disallow: /
.json
Disallow: /.json-compact
Disallow: /
.json-html
Disallow: /.xml
Disallow: /
.rss
Disallow: /.i
Disallow: /
.embed
Disallow: //comments/?sort=
Disallow: /r/
/comments///c
Disallow: /comments/
//c
Disallow: /r//submit
Disallow: /message/compose

Disallow: /api
Disallow: /post
Disallow: /submit
Disallow: /goto
Disallow: /after=
Disallow: /
before=
Disallow: /domain/t=
Disallow: /login
Disallow: /reddits/search
Disallow: /search
Disallow: /r/
/search
Allow: /

User blahblahblah provides a concise description of how to read the robots.txt file: https://www.reddit.com/r/learnprogramming/comments/3l1lcq/how_do_you_find_out_if_a_website_is_scrapable/

  • The bot that calls itself 008 (apparently from 80legs) isn't allowed to access anything
  • bender is not allowed to visit my_shiny_metal_ass (it's a Futurama joke, the page doesn't actually exist)
  • Gort isn't allowed to visit Earth (another joke, from The Day the Earth Stood Still)
  • Other scrapers should avoid checking the API methods or "compose message" or 'search" or the "over 18?" page (because those aren't something you really want showing up in Google), but they're allowed to visit anything else.

In general, your bot will fall into the * wildcard category of what the site generally do not want bots to access. You should make sure your scraper does not access any of those pages, etc. www.reddit.com/login etc.


In [ ]: