La mayoría de estos ejercicios se pueden encontrar en forma mucho más completa en el libro de Mining the Social Web

Para este práctico se necesitará instalar vía pip twitter jsonlib, prettytable collections google-api-python-client feedparser nltk


In [3]:
import twitter
import json
from prettytable import PrettyTable
from collections import Counter

Twitter

Para tener acceso a una COSTUMER_KEY, OAUTH_TOKEN, etc. deben loguearse en twitter y seguramente dejar un número de telefono, ya que su aplicación debe estar registrada en twitter. Para ver que pasos seguir visitar este link


In [4]:
CONSUMER_KEY = ''
CONSUMER_SECRET =''
OAUTH_TOKEN = ''
OAUTH_TOKEN_SECRET = ''

auth = twitter.oauth.OAuth(OAUTH_TOKEN, OAUTH_TOKEN_SECRET,
                           CONSUMER_KEY, CONSUMER_SECRET)

twitter_api = twitter.Twitter(auth=auth)

en este link pueden encontrar los Where On Earth ID de cualquier ciudad o pais


In [5]:
WORLD_WOE_ID = 1
ARG_WOE_ID = 23424747

world_trends = twitter_api.trends.place(_id=WORLD_WOE_ID)
arg_trends = twitter_api.trends.place(_id=ARG_WOE_ID)

print json.dumps(world_trends, indent=1)


[
 {
  "created_at": "2015-09-09T04:44:15Z", 
  "trends": [
   {
    "url": "http://twitter.com/search?q=%23MasterChefBR", 
    "query": "%23MasterChefBR", 
    "name": "#MasterChefBR", 
    "promoted_content": null
   }, 
   {
    "url": "http://twitter.com/search?q=Messi", 
    "query": "Messi", 
    "name": "Messi", 
    "promoted_content": null
   }, 
   {
    "url": "http://twitter.com/search?q=%23RuinABoardGame", 
    "query": "%23RuinABoardGame", 
    "name": "#RuinABoardGame", 
    "promoted_content": null
   }, 
   {
    "url": "http://twitter.com/search?q=%23manosalfuego", 
    "query": "%23manosalfuego", 
    "name": "#manosalfuego", 
    "promoted_content": null
   }, 
   {
    "url": "http://twitter.com/search?q=Martino", 
    "query": "Martino", 
    "name": "Martino", 
    "promoted_content": null
   }, 
   {
    "url": "http://twitter.com/search?q=%23LateShow", 
    "query": "%23LateShow", 
    "name": "#LateShow", 
    "promoted_content": null
   }, 
   {
    "url": "http://twitter.com/search?q=%23OTRAOttawa", 
    "query": "%23OTRAOttawa", 
    "name": "#OTRAOttawa", 
    "promoted_content": null
   }, 
   {
    "url": "http://twitter.com/search?q=Neymar", 
    "query": "Neymar", 
    "name": "Neymar", 
    "promoted_content": null
   }, 
   {
    "url": "http://twitter.com/search?q=%22Franco+Masini%22", 
    "query": "%22Franco+Masini%22", 
    "name": "Franco Masini", 
    "promoted_content": null
   }, 
   {
    "url": "http://twitter.com/search?q=Nicaragua", 
    "query": "Nicaragua", 
    "name": "Nicaragua", 
    "promoted_content": null
   }
  ], 
  "as_of": "2015-09-09T04:45:25Z", 
  "locations": [
   {
    "woeid": 1, 
    "name": "Worldwide"
   }
  ]
 }
]

Podemos ver varios atributos de los trends ...


In [6]:
print map(lambda i: world_trends[0]['trends'][i]['name'], range(len(world_trends[0]['trends'])))
print map(lambda i: world_trends[0]['trends'][i]['url'], range(len(world_trends[0]['trends'])))
print map(lambda i: world_trends[0]['trends'][i]['query'], range(len(world_trends[0]['trends'])))


[u'#MasterChefBR', u'Messi', u'#RuinABoardGame', u'#manosalfuego', u'Martino', u'#LateShow', u'#OTRAOttawa', u'Neymar', u'Franco Masini', u'Nicaragua']
[u'http://twitter.com/search?q=%23MasterChefBR', u'http://twitter.com/search?q=Messi', u'http://twitter.com/search?q=%23RuinABoardGame', u'http://twitter.com/search?q=%23manosalfuego', u'http://twitter.com/search?q=Martino', u'http://twitter.com/search?q=%23LateShow', u'http://twitter.com/search?q=%23OTRAOttawa', u'http://twitter.com/search?q=Neymar', u'http://twitter.com/search?q=%22Franco+Masini%22', u'http://twitter.com/search?q=Nicaragua']
[u'%23MasterChefBR', u'Messi', u'%23RuinABoardGame', u'%23manosalfuego', u'Martino', u'%23LateShow', u'%23OTRAOttawa', u'Neymar', u'%22Franco+Masini%22', u'Nicaragua']

Se puede trabajar con conjuntos para aplicar todas sus funciones (union, interseccion, pertenencia, etc)


In [7]:
in_the_world = set(map(lambda i: world_trends[0]['trends'][i]['name'], range(len(world_trends[0]['trends']))))

in_arg = set(map(lambda i: arg_trends[0]['trends'][i]['name'], range(len(arg_trends[0]['trends']))))

In [8]:
print in_the_world.union(in_arg)
in_both = in_the_world.intersection(in_arg)
in_both


set([u'Neymar', u'#RuinABoardGame', u'#LateShow', u'#NoSeQueHariaSin', u'Messi', u'Gotze', u'Chicharito', u'#Elegidos', u'Niembro', u'Franco Masini', u'Roncaglia', u'#MasterChefBR', u'Otamendi', u'#OTRAOttawa', u'Martino', u'Nicaragua', u'Gago', u'#manosalfuego'])
Out[8]:
{u'Franco Masini', u'Messi'}

In [9]:
results = twitter_api.search.tweets(q=in_both.pop() , count=100)
results


Out[9]:
{u'search_metadata': {u'completed_in': 0.09,
  u'count': 100,
  u'max_id': 641472945102159872,
  u'max_id_str': u'641472945102159872',
  u'next_results': u'?max_id=641472919294509055&q=Messi&count=100&include_entities=1',
  u'query': u'Messi',
  u'refresh_url': u'?since_id=641472945102159872&q=Messi&include_entities=1',
  u'since_id': 0,
  u'since_id_str': u'0'},
 u'statuses': [{u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:22 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 204474310,
      u'id_str': u'204474310',
      u'indices': [3, 14],
      u'name': u'Sebasti\xe1n Pizman',
      u'screen_name': u'sebapizman'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472945102159872,
   u'id_str': u'641472945102159872',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 14,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:38:32 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 12,
    u'favorited': False,
    u'geo': None,
    u'id': 641470721097601024,
    u'id_str': u'641470721097601024',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 14,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'Aguero toc\xf3 8 pelotas y en 5 oportunidades lo busc\xf3 a Messi. T\xe9vez toc\xf3 43, s\xf3lo 9 a Messi. Ah\xed lo ten\xe9s al socio de Lionel.',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Mon Oct 18 19:41:53 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Periodista. Conductor y comentarista de Vivamos el F\xfatbol por @somoszonanorte// #YoFortinRadio por AM 1400. Estad\xedsticas deportivas para @DataFactoryLA',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'palabrasvelezanas.blogspot.es',
         u'expanded_url': u'http://palabrasvelezanas.blogspot.es/',
         u'indices': [0, 22],
         u'url': u'http://t.co/aN4n7hg2F1'}]}},
     u'favourites_count': 830,
     u'follow_request_sent': False,
     u'followers_count': 895,
     u'following': False,
     u'friends_count': 209,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 204474310,
     u'id_str': u'204474310',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 8,
     u'location': u'',
     u'name': u'Sebasti\xe1n Pizman',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/536901396/zzz.jpg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/536901396/zzz.jpg',
     u'profile_background_tile': True,
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/472053895246528513/aRwxDWf__normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/472053895246528513/aRwxDWf__normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'sebapizman',
     u'statuses_count': 10163,
     u'time_zone': u'Santiago',
     u'url': u'http://t.co/aN4n7hg2F1',
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>',
   u'text': u'RT @sebapizman: Aguero toc\xf3 8 pelotas y en 5 oportunidades lo busc\xf3 a Messi. T\xe9vez toc\xf3 43, s\xf3lo 9 a Messi. Ah\xed lo ten\xe9s al socio de Lionel.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Tue Jan 22 06:19:58 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 2075,
    u'follow_request_sent': False,
    u'followers_count': 77,
    u'following': False,
    u'friends_count': 708,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 1110758630,
    u'id_str': u'1110758630',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'Damian A.',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1110758630/1414301593',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/3146870721/4ccd47d3a0bff297e2c0bd82da93da81_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3146870721/4ccd47d3a0bff297e2c0bd82da93da81_normal.jpeg',
    u'profile_link_color': u'677694',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'DamiaoA85',
    u'statuses_count': 2360,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:22 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 579602776,
      u'id_str': u'579602776',
      u'indices': [3, 17],
      u'name': u'HUMOR al f\xfatbol ',
      u'screen_name': u'HumorAlFutbol'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472944904929280,
   u'id_str': u'641472944904929280',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 186,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:30:24 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 139,
    u'favorited': False,
    u'geo': None,
    u'id': 641468673807503361,
    u'id_str': u'641468673807503361',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 186,
    u'retweeted': False,
    u'source': u'<a href="http://www.hootsuite.com" rel="nofollow">Hootsuite</a>',
    u'text': u'Sacaron al Chicharito y messi se inspiro',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Mon May 14 06:10:53 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Solo humor; no te enojes.',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 10458,
     u'follow_request_sent': False,
     u'followers_count': 185313,
     u'following': False,
     u'friends_count': 70264,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 579602776,
     u'id_str': u'579602776',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 224,
     u'location': u'SocialTributo@hotmail.com ',
     u'name': u'HUMOR al f\xfatbol ',
     u'notifications': False,
     u'profile_background_color': u'3B94D9',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/561279234174234625/Y300XPQw.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/561279234174234625/Y300XPQw.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/579602776/1440975760',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/636769437434048516/kZC4fXYY_normal.png',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/636769437434048516/kZC4fXYY_normal.png',
     u'profile_link_color': u'DD2E44',
     u'profile_sidebar_border_color': u'000000',
     u'profile_sidebar_fill_color': u'C0DFEC',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': False,
     u'protected': False,
     u'screen_name': u'HumorAlFutbol',
     u'statuses_count': 3641,
     u'time_zone': u'Tijuana',
     u'url': None,
     u'utc_offset': -25200,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @HumorAlFutbol: Sacaron al Chicharito y messi se inspiro',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon May 25 23:58:52 +0000 2009',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u"Just trying to do my best in a world where it's far too easy to do your worst.",
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 2581,
    u'follow_request_sent': False,
    u'followers_count': 277,
    u'following': False,
    u'friends_count': 182,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 42518013,
    u'id_str': u'42518013',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 0,
    u'location': u'CSUN',
    u'name': u'Kun Ag\xfcero',
    u'notifications': False,
    u'profile_background_color': u'0A2533',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/613757874/3b2vzek0qr8zsho5lbfg.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/613757874/3b2vzek0qr8zsho5lbfg.jpeg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/42518013/1439852190',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/626234153650884608/G9OiS72z_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/626234153650884608/G9OiS72z_normal.jpg',
    u'profile_link_color': u'DD2E44',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'_javiiaguero_',
    u'statuses_count': 15409,
    u'time_zone': u'Pacific Time (US & Canada)',
    u'url': None,
    u'utc_offset': -25200,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:22 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 462501526,
      u'id_str': u'462501526',
      u'indices': [0, 15],
      u'name': u'Hern\xe1n Gimenez',
      u'screen_name': u'HeernanGimenez'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472944783368192,
   u'id_str': u'641472944783368192',
   u'in_reply_to_screen_name': u'HeernanGimenez',
   u'in_reply_to_status_id': 641472744358572032,
   u'in_reply_to_status_id_str': u'641472744358572032',
   u'in_reply_to_user_id': 462501526,
   u'in_reply_to_user_id_str': u'462501526',
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'@HeernanGimenez 7, Roman, El Kun y Messi. Y que vengan todos los putos',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Tue Jun 22 01:13:52 +0000 2010',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'te amo much\xedsimo , gracias por todo.  tu novia manda y sos de ella\u2665 siempre juntos!',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'facebook.com/MaatiIbarra',
        u'expanded_url': u'http://www.facebook.com/MaatiIbarra',
        u'indices': [0, 22],
        u'url': u'http://t.co/i7vDd8bzqH'}]}},
    u'favourites_count': 3200,
    u'follow_request_sent': False,
    u'followers_count': 1056,
    u'following': False,
    u'friends_count': 840,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 158190943,
    u'id_str': u'158190943',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 3,
    u'location': u'Berazategui',
    u'name': u'#Maticai',
    u'notifications': False,
    u'profile_background_color': u'0CD7E6',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/442324414/Somos_Nosotros.png',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/442324414/Somos_Nosotros.png',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/158190943/1383538031',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000851570806/682eafe7cebe6b625ee490e3fcee46f7_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000851570806/682eafe7cebe6b625ee490e3fcee46f7_normal.jpeg',
    u'profile_link_color': u'DB0D0D',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'MaatiCai',
    u'statuses_count': 54193,
    u'time_zone': u'Buenos Aires',
    u'url': u'http://t.co/i7vDd8bzqH',
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:22 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472944452014080,
   u'id_str': u'641472944452014080',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'fr',
   u'metadata': {u'iso_language_code': u'fr', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'Messi es un crack \U0001f525',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Feb 28 02:34:39 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'\u264c\ufe0f',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'facebook.com/1CarolinaRomano',
        u'expanded_url': u'http://www.facebook.com/1CarolinaRomano',
        u'indices': [0, 22],
        u'url': u'http://t.co/nn6m1RHxdu'}]}},
    u'favourites_count': 2831,
    u'follow_request_sent': False,
    u'followers_count': 339,
    u'following': False,
    u'friends_count': 307,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 1226499804,
    u'id_str': u'1226499804',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'Resistencia, Argentina',
    u'name': u'C',
    u'notifications': False,
    u'profile_background_color': u'023D59',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000031870950/410450b7a02c23ac1e8b19eb80af5431.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000031870950/410450b7a02c23ac1e8b19eb80af5431.jpeg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1226499804/1438575451',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/640871383984115716/-QXu89Jm_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/640871383984115716/-QXu89Jm_normal.jpg',
    u'profile_link_color': u'15ADAD',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'RomanooCL',
    u'statuses_count': 17579,
    u'time_zone': u'Buenos Aires',
    u'url': u'http://t.co/nn6m1RHxdu',
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:22 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
      u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
      u'indices': [49, 72],
      u'url': u'https://t.co/9OtAfyoNBr'}],
    u'user_mentions': [{u'id': 2903026799,
      u'id_str': u'2903026799',
      u'indices': [3, 16],
      u'name': u'Barcelona Fans Club',
      u'screen_name': u'WeAreBARFans'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472944217026560,
   u'id_str': u'641472944217026560',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'it',
   u'metadata': {u'iso_language_code': u'it', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 1,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:46:18 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
       u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
       u'indices': [31, 54],
       u'url': u'https://t.co/9OtAfyoNBr'}],
     u'user_mentions': []},
    u'favorite_count': 2,
    u'favorited': False,
    u'geo': None,
    u'id': 641472673797828608,
    u'id_str': u'641472673797828608',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'it',
    u'metadata': {u'iso_language_code': u'it', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 1,
    u'retweeted': False,
    u'source': u'<a href="http://ifttt.com" rel="nofollow">IFTTT</a>',
    u'text': u'Video: Goal Messi (2-2) vs ARG https://t.co/9OtAfyoNBr [via argentina]',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Tue Dec 02 22:52:37 +0000 2014',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'WeAreBarFans! The BEST Barcelona Fans Page. Cul\xe9s or Barcelonistas \u26bd',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 5,
     u'follow_request_sent': False,
     u'followers_count': 1287,
     u'following': False,
     u'friends_count': 1305,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 2903026799,
     u'id_str': u'2903026799',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 14,
     u'location': u'Barcelona, Spain',
     u'name': u'Barcelona Fans Club',
     u'notifications': False,
     u'profile_background_color': u'000000',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2903026799/1417564178',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/539929632976273408/jWP2sAC__normal.png',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/539929632976273408/jWP2sAC__normal.png',
     u'profile_link_color': u'DF135B',
     u'profile_sidebar_border_color': u'000000',
     u'profile_sidebar_fill_color': u'000000',
     u'profile_text_color': u'000000',
     u'profile_use_background_image': False,
     u'protected': False,
     u'screen_name': u'WeAreBARFans',
     u'statuses_count': 34688,
     u'time_zone': None,
     u'url': None,
     u'utc_offset': None,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @WeAreBARFans: Video: Goal Messi (2-2) vs ARG https://t.co/9OtAfyoNBr [via argentina]',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Wed Nov 05 03:27:37 +0000 2014',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'follow me if you real',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 190,
    u'follow_request_sent': False,
    u'followers_count': 203,
    u'following': False,
    u'friends_count': 204,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 2890410218,
    u'id_str': u'2890410218',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'August 30 ',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2890410218/1415242218',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/610348414660784128/mPchfzrr_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/610348414660784128/mPchfzrr_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Gabriel_Avar234',
    u'statuses_count': 250,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:22 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [15, 30],
      u'text': u'VamosArgentina'}],
    u'media': [{u'display_url': u'pic.twitter.com/SRjC51xzac',
      u'expanded_url': u'http://twitter.com/Argentina/status/641469007682519040/photo/1',
      u'id': 641468622649577472,
      u'id_str': u'641468622649577472',
      u'indices': [139, 140],
      u'media_url': u'http://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
      u'sizes': {u'large': {u'h': 570, u'resize': u'fit', u'w': 570},
       u'medium': {u'h': 570, u'resize': u'fit', u'w': 570},
       u'small': {u'h': 340, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641469007682519040,
      u'source_status_id_str': u'641469007682519040',
      u'source_user_id': 2495199115,
      u'source_user_id_str': u'2495199115',
      u'type': u'photo',
      u'url': u'http://t.co/SRjC51xzac'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'goo.gl/bzChAJ',
      u'expanded_url': u'http://goo.gl/bzChAJ',
      u'indices': [109, 131],
      u'url': u'http://t.co/LmWU4B29ZZ'}],
    u'user_mentions': [{u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [3, 13],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472944154128384,
   u'id_str': u'641472944154128384',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 661,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:31:44 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [0, 15],
       u'text': u'VamosArgentina'}],
     u'media': [{u'display_url': u'pic.twitter.com/SRjC51xzac',
       u'expanded_url': u'http://twitter.com/Argentina/status/641469007682519040/photo/1',
       u'id': 641468622649577472,
       u'id_str': u'641468622649577472',
       u'indices': [117, 139],
       u'media_url': u'http://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
       u'sizes': {u'large': {u'h': 570, u'resize': u'fit', u'w': 570},
        u'medium': {u'h': 570, u'resize': u'fit', u'w': 570},
        u'small': {u'h': 340, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/SRjC51xzac'}],
     u'symbols': [],
     u'urls': [{u'display_url': u'goo.gl/bzChAJ',
       u'expanded_url': u'http://goo.gl/bzChAJ',
       u'indices': [94, 116],
       u'url': u'http://t.co/LmWU4B29ZZ'}],
     u'user_mentions': []},
    u'favorite_count': 513,
    u'favorited': False,
    u'geo': None,
    u'id': 641469007682519040,
    u'id_str': u'641469007682519040',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 661,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'#VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://t.co/SRjC51xzac',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed May 14 22:28:45 +0000 2014',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'Twitter oficial de la Selecci\xf3n Argentina. Fan Page: http://t.co/ztPTvzLubx\u2026',
     u'entities': {u'description': {u'urls': [{u'display_url': u'facebook.com/AFASeleccionAr',
         u'expanded_url': u'http://facebook.com/AFASeleccionAr',
         u'indices': [53, 75],
         u'url': u'http://t.co/ztPTvzLubx'}]},
      u'url': {u'urls': [{u'display_url': u'afa.com.ar',
         u'expanded_url': u'http://afa.com.ar',
         u'indices': [0, 22],
         u'url': u'http://t.co/si6hz2DjJT'}]}},
     u'favourites_count': 123,
     u'follow_request_sent': False,
     u'followers_count': 1648755,
     u'following': False,
     u'friends_count': 49,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 2495199115,
     u'id_str': u'2495199115',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 2215,
     u'location': u'Argentina',
     u'name': u'Selecci\xf3n Argentina',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2495199115/1441578232',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Argentina',
     u'statuses_count': 19954,
     u'time_zone': u'Buenos Aires',
     u'url': u'http://t.co/si6hz2DjJT',
     u'utc_offset': -10800,
     u'verified': True}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @Argentina: #VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Sep 12 20:56:44 +0000 2009',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'C.P. egresado del #IPN, adicto a la m\xfasica, apasionado del f\xfatbol mundial, fiel seguidor del @CF_America en las buenas y en las malas... Yo solo s\xe9 que nada s\xe9.',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'instagram.com/hugo_azulkrema',
        u'expanded_url': u'http://instagram.com/hugo_azulkrema',
        u'indices': [0, 22],
        u'url': u'http://t.co/7igOL2Qbm6'}]}},
    u'favourites_count': 41,
    u'follow_request_sent': False,
    u'followers_count': 346,
    u'following': False,
    u'friends_count': 599,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 73732457,
    u'id_str': u'73732457',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 6,
    u'location': u'Ciudad de M\xe9xico, M\xe9xico',
    u'name': u'Hugo E. Hernandez',
    u'notifications': False,
    u'profile_background_color': u'1A1B16',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/441636494/cityskyline_74_143440.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/441636494/cityskyline_74_143440.jpg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/73732457/1433204447',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/547106562213691393/zxVoZraz_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/547106562213691393/zxVoZraz_normal.jpeg',
    u'profile_link_color': u'FF0000',
    u'profile_sidebar_border_color': u'181A1E',
    u'profile_sidebar_fill_color': u'292923',
    u'profile_text_color': u'666666',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'HugoAzulkrema',
    u'statuses_count': 19505,
    u'time_zone': u'Mexico City',
    u'url': u'http://t.co/7igOL2Qbm6',
    u'utc_offset': -18000,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:22 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 226787667,
      u'id_str': u'226787667',
      u'indices': [3, 14],
      u'name': u'Braian Molina',
      u'screen_name': u'BraiMolina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472943940333569,
   u'id_str': u'641472943940333569',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 93,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:38:40 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 46,
    u'favorited': False,
    u'geo': None,
    u'id': 641470756279427072,
    u'id_str': u'641470756279427072',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 93,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    u'text': u'Me puedo llegar a pelear con todo el mundo por defender a Messi. Es \xfanico y ninguno va a ser como el. Por algo es el mejor del mundo',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed Dec 15 02:24:34 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Jugador E Hincha Del Club Atl\xe9tico River Plate.;Todo lo puedo en Cristo que me Fortalece; Nacimiento: 17-04-95',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 834,
     u'follow_request_sent': False,
     u'followers_count': 1738,
     u'following': False,
     u'friends_count': 95,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 226787667,
     u'id_str': u'226787667',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 16,
     u'location': u'Moreno',
     u'name': u'Braian Molina',
     u'notifications': False,
     u'profile_background_color': u'131516',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/849711845/d9f8d42a723c993bf7c8105a4307e8b9.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/849711845/d9f8d42a723c993bf7c8105a4307e8b9.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/226787667/1431670253',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/599094590793187328/9h_yyOiE_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/599094590793187328/9h_yyOiE_normal.jpg',
     u'profile_link_color': u'009999',
     u'profile_sidebar_border_color': u'000000',
     u'profile_sidebar_fill_color': u'EFEFEF',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'BraiMolina',
     u'statuses_count': 7033,
     u'time_zone': u'Brasilia',
     u'url': None,
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @BraiMolina: Me puedo llegar a pelear con todo el mundo por defender a Messi. Es \xfanico y ninguno va a ser como el. Por algo es el mejor \u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Jan 13 14:37:43 +0000 2012',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 343,
    u'follow_request_sent': False,
    u'followers_count': 337,
    u'following': False,
    u'friends_count': 221,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 462925586,
    u'id_str': u'462925586',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 3,
    u'location': u'Sevilla F\xfatbol Club ',
    u'name': u'Alberto S.',
    u'notifications': False,
    u'profile_background_color': u'B2DFDA',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/402498629/FONDO.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/402498629/FONDO.jpg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/462925586/1439225260',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/632723807007047680/hY0FjuEE_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/632723807007047680/hY0FjuEE_normal.jpg',
    u'profile_link_color': u'93A644',
    u'profile_sidebar_border_color': u'EEEEEE',
    u'profile_sidebar_fill_color': u'FFFFFF',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'AlbertoSiles',
    u'statuses_count': 5889,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:22 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472943759843329,
   u'id_str': u'641472943759843329',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'Messi haciendo un Goetze.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Jun 13 05:22:14 +0000 2009',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Comunicador/Publicista/Redactor creativo. Entre el cine, la literatura y series de tele. Escribiendo cuentos, c\xf3mics y algo m\xe1s. Costa Rica.',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 19070,
    u'follow_request_sent': False,
    u'followers_count': 276,
    u'following': False,
    u'friends_count': 313,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 46833474,
    u'id_str': u'46833474',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 6,
    u'location': u'',
    u'name': u'Edward',
    u'notifications': False,
    u'profile_background_color': u'709397',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme6/bg.gif',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme6/bg.gif',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/46833474/1441082449',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/637354404287541249/KVKhnSPs_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/637354404287541249/KVKhnSPs_normal.jpg',
    u'profile_link_color': u'FF3300',
    u'profile_sidebar_border_color': u'86A4A6',
    u'profile_sidebar_fill_color': u'A0C5C7',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'edward_correa',
    u'statuses_count': 15586,
    u'time_zone': u'Central Time (US & Canada)',
    u'url': None,
    u'utc_offset': -18000,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:22 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 583545411,
      u'id_str': u'583545411',
      u'indices': [3, 16],
      u'name': u'Leo Messi',
      u'screen_name': u'messi10stats'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472943600435200,
   u'id_str': u'641472943600435200',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'it',
   u'metadata': {u'iso_language_code': u'it', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 103,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:27:51 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 107,
    u'favorited': False,
    u'geo': None,
    u'id': 641468030740885508,
    u'id_str': u'641468030740885508',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'it',
    u'metadata': {u'iso_language_code': u'it', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 103,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Messi 49-56 Batistuta',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Fri May 18 04:36:21 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Welcome to #1 Messi fan account on twitter - stats - amazing facts - records and everything on the greatest player - Business: @messician - janhessi@yahoo.com',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 342,
     u'follow_request_sent': False,
     u'followers_count': 583632,
     u'following': False,
     u'friends_count': 887,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 583545411,
     u'id_str': u'583545411',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 1102,
     u'location': u'The World',
     u'name': u'Leo Messi',
     u'notifications': False,
     u'profile_background_color': u'1A1B1F',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000151331158/MLDaq4hM.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000151331158/MLDaq4hM.jpeg',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/583545411/1412052592',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/589312545770475520/JUIeAS65_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/589312545770475520/JUIeAS65_normal.jpg',
     u'profile_link_color': u'2FC2EF',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'252429',
     u'profile_text_color': u'666666',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'messi10stats',
     u'statuses_count': 17072,
     u'time_zone': u'Karachi',
     u'url': None,
     u'utc_offset': 18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>',
   u'text': u'RT @messi10stats: Messi 49-56 Batistuta',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Tue Dec 14 01:54:22 +0000 2010',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'\u2764\ufe0fLionel Messi\u2764\ufe0fFC Barcelona\u2764\ufe0fSuper Junior \uae40\ud76c\ucca0\u2764\ufe0fFTIsland \uc774\ud64d\uae30\u2764\ufe0f',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 234,
    u'follow_request_sent': False,
    u'followers_count': 59,
    u'following': False,
    u'friends_count': 193,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 226391915,
    u'id_str': u'226391915',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'zh-tw',
    u'listed_count': 3,
    u'location': u'TAIWAN',
    u'name': u'MIN',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/714601762/4cab53ef726cc2089dd2e918f1a2bc7a.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/714601762/4cab53ef726cc2089dd2e918f1a2bc7a.jpeg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/226391915/1421090655',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/554720919277404160/3n9YwHx0_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/554720919277404160/3n9YwHx0_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'MINHCHG',
    u'statuses_count': 20360,
    u'time_zone': u'Taipei',
    u'url': None,
    u'utc_offset': 28800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:22 +0000 2015',
   u'entities': {u'hashtags': [],
    u'media': [{u'display_url': u'pic.twitter.com/aDW36sjAb5',
      u'expanded_url': u'http://twitter.com/Messiologia/status/641472388081819649/photo/1',
      u'id': 641472298764095488,
      u'id_str': u'641472298764095488',
      u'indices': [139, 140],
      u'media_url': u'http://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
      u'sizes': {u'large': {u'h': 573, u'resize': u'fit', u'w': 940},
       u'medium': {u'h': 365, u'resize': u'fit', u'w': 600},
       u'small': {u'h': 207, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641472388081819649,
      u'source_status_id_str': u'641472388081819649',
      u'source_user_id': 889476378,
      u'source_user_id_str': u'889476378',
      u'type': u'photo',
      u'url': u'http://t.co/aDW36sjAb5'}],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 889476378,
      u'id_str': u'889476378',
      u'indices': [3, 15],
      u'name': u'Messiolog\xeda',
      u'screen_name': u'Messiologia'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472943348973568,
   u'id_str': u'641472943348973568',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 73,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:45:09 +0000 2015',
    u'entities': {u'hashtags': [],
     u'media': [{u'display_url': u'pic.twitter.com/aDW36sjAb5',
       u'expanded_url': u'http://twitter.com/Messiologia/status/641472388081819649/photo/1',
       u'id': 641472298764095488,
       u'id_str': u'641472298764095488',
       u'indices': [118, 140],
       u'media_url': u'http://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
       u'sizes': {u'large': {u'h': 573, u'resize': u'fit', u'w': 940},
        u'medium': {u'h': 365, u'resize': u'fit', u'w': 600},
        u'small': {u'h': 207, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/aDW36sjAb5'}],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 55,
    u'favorited': False,
    u'geo': None,
    u'id': 641472388081819649,
    u'id_str': u'641472388081819649',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 73,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http://t.co/aDW36sjAb5',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Thu Oct 18 18:33:04 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Haci\xe9ndole el aguante al mejor del mundo.',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'messiologiatw.blogspot.com',
         u'expanded_url': u'http://messiologiatw.blogspot.com',
         u'indices': [0, 22],
         u'url': u'http://t.co/xpFeAGqm6c'}]}},
     u'favourites_count': 27019,
     u'follow_request_sent': False,
     u'followers_count': 25794,
     u'following': False,
     u'friends_count': 98,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 889476378,
     u'id_str': u'889476378',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 91,
     u'location': u'messiologiatw@gmail.com',
     u'name': u'Messiolog\xeda',
     u'notifications': False,
     u'profile_background_color': u'08BAF0',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/468969003604385792/6ak3eAUZ.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/468969003604385792/6ak3eAUZ.png',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/889476378/1418970869',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/545407312559484928/EtbfheBb_normal.png',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/545407312559484928/EtbfheBb_normal.png',
     u'profile_link_color': u'08BAF0',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Messiologia',
     u'statuses_count': 30448,
     u'time_zone': u'Caracas',
     u'url': u'http://t.co/xpFeAGqm6c',
     u'utc_offset': -16200,
     u'verified': False}},
   u'source': u'<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\xae</a>',
   u'text': u'RT @Messiologia: Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Feb 13 04:55:58 +0000 2014',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 28,
    u'follow_request_sent': False,
    u'followers_count': 29,
    u'following': False,
    u'friends_count': 53,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 2340616289,
    u'id_str': u'2340616289',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'Fede Lima',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2340616289/1392294401',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/433833161458728960/nP652tXd_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/433833161458728960/nP652tXd_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'fedelima27',
    u'statuses_count': 251,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:22 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 185256957,
      u'id_str': u'185256957',
      u'indices': [3, 11],
      u'name': u'Rodrigo S. Volpi',
      u'screen_name': u'rsvolpi'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472942895984640,
   u'id_str': u'641472942895984640',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 106,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:37:39 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 52,
    u'favorited': False,
    u'geo': None,
    u'id': 641470499227332609,
    u'id_str': u'641470499227332609',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 106,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'La dupla Ag\xfcero-Messi es indiscutida en la Selecci\xf3n Argentina, aunque algunos jugadores tengan m\xe1s prensa que otros.',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Tue Aug 31 15:28:05 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Periodista. CM. ESPN. SportsCenter. C. A. Independiente. Director Period\xedstico de @locoxelrojoweb y del documental #ElColorDeMiSangre. Ex Radio AM 950.',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'locoxelrojo.com',
         u'expanded_url': u'http://www.locoxelrojo.com',
         u'indices': [0, 22],
         u'url': u'http://t.co/4Sw39sK6ZR'}]}},
     u'favourites_count': 2994,
     u'follow_request_sent': False,
     u'followers_count': 17403,
     u'following': False,
     u'friends_count': 328,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 185256957,
     u'id_str': u'185256957',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 163,
     u'location': u'Buenos Aires, Argentina',
     u'name': u'Rodrigo S. Volpi',
     u'notifications': False,
     u'profile_background_color': u'000000',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme14/bg.gif',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme14/bg.gif',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/185256957/1401089032',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/556924474541367296/rpomjAxK_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/556924474541367296/rpomjAxK_normal.jpeg',
     u'profile_link_color': u'009991',
     u'profile_sidebar_border_color': u'000000',
     u'profile_sidebar_fill_color': u'000000',
     u'profile_text_color': u'000000',
     u'profile_use_background_image': False,
     u'protected': False,
     u'screen_name': u'rsvolpi',
     u'statuses_count': 19837,
     u'time_zone': u'Santiago',
     u'url': u'http://t.co/4Sw39sK6ZR',
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   u'text': u'RT @rsvolpi: La dupla Ag\xfcero-Messi es indiscutida en la Selecci\xf3n Argentina, aunque algunos jugadores tengan m\xe1s prensa que otros.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Apr 23 01:23:51 +0000 2010',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Profesor de Tenis en GEVP',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 5768,
    u'follow_request_sent': False,
    u'followers_count': 483,
    u'following': False,
    u'friends_count': 680,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 136099736,
    u'id_str': u'136099736',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 4,
    u'location': u'Mataderos  ',
    u'name': u'Mathias ',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/191319327/infiernovsbocafotos-0140.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/191319327/infiernovsbocafotos-0140.jpg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/136099736/1376662025',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/626400653540237312/FtGl9tXc_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/626400653540237312/FtGl9tXc_normal.jpg',
    u'profile_link_color': u'147D26',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'27941B',
    u'profile_text_color': u'0D010D',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'MATHUCAI',
    u'statuses_count': 23935,
    u'time_zone': u'Santiago',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:22 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472942564618240,
   u'id_str': u'641472942564618240',
   u'in_reply_to_screen_name': u'manuelgiaccio',
   u'in_reply_to_status_id': 641472835286888449,
   u'in_reply_to_status_id_str': u'641472835286888449',
   u'in_reply_to_user_id': 40462121,
   u'in_reply_to_user_id_str': u'40462121',
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'Kun-Messi es la f\xf3rmula, no jodamos m\xe1s.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat May 16 13:23:06 +0000 2009',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u"I'm impossible to forget, but I'm hard to remember",
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1693,
    u'follow_request_sent': False,
    u'followers_count': 342,
    u'following': False,
    u'friends_count': 366,
    u'geo_enabled': True,
    u'has_extended_profile': True,
    u'id': 40462121,
    u'id_str': u'40462121',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 4,
    u'location': u'Nowhere',
    u'name': u'Manuel Giaccio',
    u'notifications': False,
    u'profile_background_color': u'FFFFFF',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000047651980/f2c3631ebd8c96761a25425f2535c64e.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000047651980/f2c3631ebd8c96761a25425f2535c64e.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/40462121/1417626812',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/626252267029708800/aHXjKEk__normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/626252267029708800/aHXjKEk__normal.jpg',
    u'profile_link_color': u'000000',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'87978D',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'manuelgiaccio',
    u'statuses_count': 21600,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'bit.ly/1XJiJ0x',
      u'expanded_url': u'http://bit.ly/1XJiJ0x',
      u'indices': [80, 102],
      u'url': u'http://t.co/6vubpnjzDW'}],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472940890939392,
   u'id_str': u'641472940890939392',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'pt',
   u'metadata': {u'iso_language_code': u'pt', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>',
   u'text': u'Messi brilha no fim, e Argentina arranca empate com o M\xe9xico (09/09/15-01h32):  http://t.co/6vubpnjzDW',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Apr 11 03:39:48 +0000 2009',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 4,
    u'follow_request_sent': False,
    u'followers_count': 338,
    u'following': False,
    u'friends_count': 694,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 30388619,
    u'id_str': u'30388619',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'pt',
    u'listed_count': 0,
    u'location': u'Vinhedo, SP, Brasil',
    u'name': u'John Wesley BETA',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/65837410/2010-01-11_05-10-50_187.35.181.200.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/65837410/2010-01-11_05-10-50_187.35.181.200.jpg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/30388619/1361463117',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/1561123735/337069_271113639581083_100000473484708_1170926_5837230_o_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/1561123735/337069_271113639581083_100000473484708_1170926_5837230_o_normal.jpg',
    u'profile_link_color': u'DD5563',
    u'profile_sidebar_border_color': u'816F46',
    u'profile_sidebar_fill_color': u'DEDEDE',
    u'profile_text_color': u'2B0C13',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'j_wesleyy',
    u'statuses_count': 12148,
    u'time_zone': u'Brasilia',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'twitter.com/pviloutaoficia\u2026',
      u'expanded_url': u'https://twitter.com/pviloutaoficial/status/641465432554213380',
      u'indices': [82, 105],
      u'url': u'https://t.co/pPLfHUJ7yS'}],
    u'user_mentions': [{u'id': 133535445,
      u'id_str': u'133535445',
      u'indices': [3, 14],
      u'name': u'Enrique Quique Cano',
      u'screen_name': u'QuiqueCano'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472940857540608,
   u'id_str': u'641472940857540608',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': True,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 6,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:41:26 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'twitter.com/pviloutaoficia\u2026',
       u'expanded_url': u'https://twitter.com/pviloutaoficial/status/641465432554213380',
       u'indices': [66, 89],
       u'url': u'https://t.co/pPLfHUJ7yS'}],
     u'user_mentions': []},
    u'favorite_count': 3,
    u'favorited': False,
    u'geo': None,
    u'id': 641471450138996736,
    u'id_str': u'641471450138996736',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': True,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': {u'attributes': {},
     u'bounding_box': {u'coordinates': [[[-74.165221, 40.734214],
        [-74.138181, 40.734214],
        [-74.138181, 40.75402],
        [-74.165221, 40.75402]]],
      u'type': u'Polygon'},
     u'contained_within': [],
     u'country': u'United States',
     u'country_code': u'US',
     u'full_name': u'Harrison, NJ',
     u'id': u'75ba1d57eca49b3f',
     u'name': u'Harrison',
     u'place_type': u'city',
     u'url': u'https://api.twitter.com/1.1/geo/id/75ba1d57eca49b3f.json'},
    u'possibly_sensitive': False,
    u'quoted_status': {u'contributors': None,
     u'coordinates': None,
     u'created_at': u'Wed Sep 09 04:17:31 +0000 2015',
     u'entities': {u'hashtags': [],
      u'symbols': [],
      u'urls': [],
      u'user_mentions': []},
     u'favorite_count': 44,
     u'favorited': False,
     u'geo': None,
     u'id': 641465432554213380,
     u'id_str': u'641465432554213380',
     u'in_reply_to_screen_name': None,
     u'in_reply_to_status_id': None,
     u'in_reply_to_status_id_str': None,
     u'in_reply_to_user_id': None,
     u'in_reply_to_user_id_str': None,
     u'is_quote_status': False,
     u'lang': u'es',
     u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
     u'place': None,
     u'retweet_count': 70,
     u'retweeted': False,
     u'source': u'<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>',
     u'text': u'0- 2 hasta ma\xf1ana',
     u'truncated': False},
    u'quoted_status_id': 641465432554213380,
    u'quoted_status_id_str': u'641465432554213380',
    u'retweet_count': 6,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    u'text': u'Despertateeeeeeee. A messi se le ocurri\xf3 armar un par de jugadas. https://t.co/pPLfHUJ7yS',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Fri Apr 16 01:46:36 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Periodista deportivo. Columnista de tenis de Radio Del Plata y El Exprimidor. Conductor de Tenis Tour por 360 TV digital',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'tenisintimo.blogspot.com',
         u'expanded_url': u'http://www.tenisintimo.blogspot.com',
         u'indices': [0, 22],
         u'url': u'http://t.co/LebfYyjbO0'}]}},
     u'favourites_count': 25,
     u'follow_request_sent': False,
     u'followers_count': 8541,
     u'following': False,
     u'friends_count': 213,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 133535445,
     u'id_str': u'133535445',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 240,
     u'location': u'US Open 2012',
     u'name': u'Enrique Quique Cano',
     u'notifications': False,
     u'profile_background_color': u'709397',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/97018429/Twitter_fondo_copy.jpg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/97018429/Twitter_fondo_copy.jpg',
     u'profile_background_tile': False,
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/1537647783/QuiqueUSOpen2011_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/1537647783/QuiqueUSOpen2011_normal.jpg',
     u'profile_link_color': u'FF3300',
     u'profile_sidebar_border_color': u'86A4A6',
     u'profile_sidebar_fill_color': u'A0C5C7',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'QuiqueCano',
     u'statuses_count': 31047,
     u'time_zone': None,
     u'url': u'http://t.co/LebfYyjbO0',
     u'utc_offset': None,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @QuiqueCano: Despertateeeeeeee. A messi se le ocurri\xf3 armar un par de jugadas. https://t.co/pPLfHUJ7yS',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Oct 12 02:23:19 +0000 2013',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1119,
    u'follow_request_sent': False,
    u'followers_count': 337,
    u'following': False,
    u'friends_count': 267,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 1955518142,
    u'id_str': u'1955518142',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'C\xf3rdoba',
    u'name': u'Lucas Ferreyra',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1955518142/1426043306',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/587769292097253376/QZX62m3x_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/587769292097253376/QZX62m3x_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Lucas_86768',
    u'statuses_count': 7965,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
      u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
      u'indices': [47, 70],
      u'url': u'https://t.co/xLBBNUeQH5'}],
    u'user_mentions': [{u'id': 38742405,
      u'id_str': u'38742405',
      u'indices': [3, 14],
      u'name': u'barcastuff',
      u'screen_name': u'barcastuff'},
     {u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [76, 86],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472940626849796,
   u'id_str': u'641472940626849796',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 295,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:32:24 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
       u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
       u'indices': [31, 54],
       u'url': u'https://t.co/xLBBNUeQH5'}],
     u'user_mentions': [{u'id': 2495199115,
       u'id_str': u'2495199115',
       u'indices': [60, 70],
       u'name': u'Selecci\xf3n Argentina',
       u'screen_name': u'Argentina'}]},
    u'favorite_count': 218,
    u'favorited': False,
    u'geo': None,
    u'id': 641469176654245888,
    u'id_str': u'641469176654245888',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'en',
    u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 295,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'Video: Goal Messi (2-2) vs ARG https://t.co/xLBBNUeQH5 [via @argentina]',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Fri May 08 20:55:26 +0000 2009',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'FC Barcelona. Bar\xe7a. A bit of news and stats, pictures and videos. The original countdown to the games. And one question every day. Inventor of [via ...]',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'unicef.org',
         u'expanded_url': u'http://unicef.org',
         u'indices': [0, 22],
         u'url': u'http://t.co/OxecXlLqG7'}]}},
     u'favourites_count': 3439,
     u'follow_request_sent': False,
     u'followers_count': 439382,
     u'following': False,
     u'friends_count': 0,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 38742405,
     u'id_str': u'38742405',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 4784,
     u'location': u'',
     u'name': u'barcastuff',
     u'notifications': False,
     u'profile_background_color': u'EBEBEB',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme7/bg.gif',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme7/bg.gif',
     u'profile_background_tile': False,
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/309654707/josep_pep_guardiola_barcelona_barca_twitter_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/309654707/josep_pep_guardiola_barcelona_barca_twitter_normal.jpg',
     u'profile_link_color': u'990000',
     u'profile_sidebar_border_color': u'DFDFDF',
     u'profile_sidebar_fill_color': u'F3F3F3',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'barcastuff',
     u'statuses_count': 199082,
     u'time_zone': u'Rome',
     u'url': u'http://t.co/OxecXlLqG7',
     u'utc_offset': 7200,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @barcastuff: Video: Goal Messi (2-2) vs ARG https://t.co/xLBBNUeQH5 [via @argentina]',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon Feb 28 17:28:07 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'GOONER',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'Arsenal.com',
        u'expanded_url': u'http://www.Arsenal.com',
        u'indices': [0, 22],
        u'url': u'http://t.co/6eslhEpWBC'}]}},
    u'favourites_count': 1256,
    u'follow_request_sent': False,
    u'followers_count': 1315,
    u'following': False,
    u'friends_count': 871,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 258863395,
    u'id_str': u'258863395',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 7,
    u'location': u"I can't hear from here!",
    u'name': u'\u0645\u0646\u0635\u0648\u0631',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/498906006093434880/wsqW0ZVZ.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/498906006093434880/wsqW0ZVZ.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/258863395/1440498308',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/641006539894063105/I1j3JBjA_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/641006539894063105/I1j3JBjA_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Sensei_mansoor',
    u'statuses_count': 65065,
    u'time_zone': u'West Central Africa',
    u'url': u'http://t.co/6eslhEpWBC',
    u'utc_offset': 3600,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [15, 30],
      u'text': u'VamosArgentina'}],
    u'media': [{u'display_url': u'pic.twitter.com/SRjC51xzac',
      u'expanded_url': u'http://twitter.com/Argentina/status/641469007682519040/photo/1',
      u'id': 641468622649577472,
      u'id_str': u'641468622649577472',
      u'indices': [139, 140],
      u'media_url': u'http://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
      u'sizes': {u'large': {u'h': 570, u'resize': u'fit', u'w': 570},
       u'medium': {u'h': 570, u'resize': u'fit', u'w': 570},
       u'small': {u'h': 340, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641469007682519040,
      u'source_status_id_str': u'641469007682519040',
      u'source_user_id': 2495199115,
      u'source_user_id_str': u'2495199115',
      u'type': u'photo',
      u'url': u'http://t.co/SRjC51xzac'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'goo.gl/bzChAJ',
      u'expanded_url': u'http://goo.gl/bzChAJ',
      u'indices': [109, 131],
      u'url': u'http://t.co/LmWU4B29ZZ'}],
    u'user_mentions': [{u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [3, 13],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472940450689025,
   u'id_str': u'641472940450689025',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 661,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:31:44 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [0, 15],
       u'text': u'VamosArgentina'}],
     u'media': [{u'display_url': u'pic.twitter.com/SRjC51xzac',
       u'expanded_url': u'http://twitter.com/Argentina/status/641469007682519040/photo/1',
       u'id': 641468622649577472,
       u'id_str': u'641468622649577472',
       u'indices': [117, 139],
       u'media_url': u'http://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
       u'sizes': {u'large': {u'h': 570, u'resize': u'fit', u'w': 570},
        u'medium': {u'h': 570, u'resize': u'fit', u'w': 570},
        u'small': {u'h': 340, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/SRjC51xzac'}],
     u'symbols': [],
     u'urls': [{u'display_url': u'goo.gl/bzChAJ',
       u'expanded_url': u'http://goo.gl/bzChAJ',
       u'indices': [94, 116],
       u'url': u'http://t.co/LmWU4B29ZZ'}],
     u'user_mentions': []},
    u'favorite_count': 513,
    u'favorited': False,
    u'geo': None,
    u'id': 641469007682519040,
    u'id_str': u'641469007682519040',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 661,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'#VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://t.co/SRjC51xzac',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed May 14 22:28:45 +0000 2014',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'Twitter oficial de la Selecci\xf3n Argentina. Fan Page: http://t.co/ztPTvzLubx\u2026',
     u'entities': {u'description': {u'urls': [{u'display_url': u'facebook.com/AFASeleccionAr',
         u'expanded_url': u'http://facebook.com/AFASeleccionAr',
         u'indices': [53, 75],
         u'url': u'http://t.co/ztPTvzLubx'}]},
      u'url': {u'urls': [{u'display_url': u'afa.com.ar',
         u'expanded_url': u'http://afa.com.ar',
         u'indices': [0, 22],
         u'url': u'http://t.co/si6hz2DjJT'}]}},
     u'favourites_count': 123,
     u'follow_request_sent': False,
     u'followers_count': 1648755,
     u'following': False,
     u'friends_count': 49,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 2495199115,
     u'id_str': u'2495199115',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 2215,
     u'location': u'Argentina',
     u'name': u'Selecci\xf3n Argentina',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2495199115/1441578232',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Argentina',
     u'statuses_count': 19954,
     u'time_zone': u'Buenos Aires',
     u'url': u'http://t.co/si6hz2DjJT',
     u'utc_offset': -10800,
     u'verified': True}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @Argentina: #VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Oct 07 16:36:46 +0000 2010',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 94,
    u'follow_request_sent': False,
    u'followers_count': 16,
    u'following': False,
    u'friends_count': 35,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 199740364,
    u'id_str': u'199740364',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 0,
    u'location': u'USA',
    u'name': u'Lily & Marcelo',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/609455624494166017/0DcgblPy.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/609455624494166017/0DcgblPy.jpg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/199740364/1440607690',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/609436516872392704/Wt6z0FvH_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/609436516872392704/Wt6z0FvH_normal.jpg',
    u'profile_link_color': u'9266CC',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'37Atlanta',
    u'statuses_count': 208,
    u'time_zone': u'Eastern Time (US & Canada)',
    u'url': None,
    u'utc_offset': -14400,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
      u'expanded_url': u'http://snpy.tv/1ivZeZj',
      u'indices': [44, 66],
      u'url': u'http://t.co/u3AIzt9nKq'}],
    u'user_mentions': [{u'id': 985172054,
      u'id_str': u'985172054',
      u'indices': [3, 18],
      u'name': u'GeniusFootball',
      u'screen_name': u'GeniusFootball'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472939829915648,
   u'id_str': u'641472939829915648',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 1292,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:30:45 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
       u'expanded_url': u'http://snpy.tv/1ivZeZj',
       u'indices': [24, 46],
       u'url': u'http://t.co/u3AIzt9nKq'}],
     u'user_mentions': []},
    u'favorite_count': 785,
    u'favorited': False,
    u'geo': None,
    u'id': 641468761917161472,
    u'id_str': u'641468761917161472',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'en',
    u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 1292,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Messi just did a Gotze  http://t.co/u3AIzt9nKq',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Sun Dec 02 18:47:35 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Bringing you the best stats, facts, pictures and videos! Business: higeniusfootball@gmail.com',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'purelyfootball.com',
         u'expanded_url': u'http://purelyfootball.com',
         u'indices': [0, 22],
         u'url': u'http://t.co/AL2B81nZD0'}]}},
     u'favourites_count': 639,
     u'follow_request_sent': False,
     u'followers_count': 758503,
     u'following': False,
     u'friends_count': 486,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 985172054,
     u'id_str': u'985172054',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 2402,
     u'location': u'Global',
     u'name': u'GeniusFootball',
     u'notifications': False,
     u'profile_background_color': u'131516',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000167677834/sRUYanwM.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000167677834/sRUYanwM.jpeg',
     u'profile_background_tile': True,
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/422821516019920896/qFEPUboh_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/422821516019920896/qFEPUboh_normal.jpeg',
     u'profile_link_color': u'009999',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'EFEFEF',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'GeniusFootball',
     u'statuses_count': 33426,
     u'time_zone': u'London',
     u'url': u'http://t.co/AL2B81nZD0',
     u'utc_offset': 3600,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @GeniusFootball: Messi just did a Gotze  http://t.co/u3AIzt9nKq',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Jun 09 02:08:11 +0000 2013',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'Selena gomez doe',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 721,
    u'follow_request_sent': False,
    u'followers_count': 68,
    u'following': False,
    u'friends_count': 1002,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 1494428156,
    u'id_str': u'1494428156',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 1,
    u'location': u'',
    u'name': u'Cesar Tapia',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1494428156/1370745229',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/3774253738/43c712de90c861f56b4a0784a1552152_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3774253738/43c712de90c861f56b4a0784a1552152_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'tapiacesar48',
    u'statuses_count': 5,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472939456638976,
   u'id_str': u'641472939456638976',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'A Messi lo banco siempre menos en las finales con Argentina, todav\xeda espero que me cierre la boca!',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Feb 25 03:58:05 +0000 2010',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Estudiante de Ingenier\xeda Agron\xf3mica :) Pin BBM : 79117C7F :)',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1928,
    u'follow_request_sent': False,
    u'followers_count': 700,
    u'following': False,
    u'friends_count': 480,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 117291375,
    u'id_str': u'117291375',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 2,
    u'location': u'Vicu\xf1a Mackenna',
    u'name': u'Justy #5\u270b',
    u'notifications': False,
    u'profile_background_color': u'022330',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme15/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme15/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/117291375/1422784779',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/551450986498510849/ZctzcKZW_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/551450986498510849/ZctzcKZW_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'A8C7F7',
    u'profile_sidebar_fill_color': u'C0DFEC',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Guusilla',
    u'statuses_count': 19410,
    u'time_zone': u'Brasilia',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
      u'expanded_url': u'http://snpy.tv/1ivZeZj',
      u'indices': [36, 58],
      u'url': u'http://t.co/kzntJvndgU'}],
    u'user_mentions': [{u'id': 583545411,
      u'id_str': u'583545411',
      u'indices': [3, 16],
      u'name': u'Leo Messi',
      u'screen_name': u'messi10stats'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472939389505536,
   u'id_str': u'641472939389505536',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'it',
   u'metadata': {u'iso_language_code': u'it', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 608,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:28:50 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
       u'expanded_url': u'http://snpy.tv/1ivZeZj',
       u'indices': [18, 40],
       u'url': u'http://t.co/kzntJvndgU'}],
     u'user_mentions': []},
    u'favorite_count': 414,
    u'favorited': False,
    u'geo': None,
    u'id': 641468281086349320,
    u'id_str': u'641468281086349320',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'it',
    u'metadata': {u'iso_language_code': u'it', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 608,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Messi Messi Messi http://t.co/kzntJvndgU',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Fri May 18 04:36:21 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Welcome to #1 Messi fan account on twitter - stats - amazing facts - records and everything on the greatest player - Business: @messician - janhessi@yahoo.com',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 342,
     u'follow_request_sent': False,
     u'followers_count': 583632,
     u'following': False,
     u'friends_count': 887,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 583545411,
     u'id_str': u'583545411',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 1102,
     u'location': u'The World',
     u'name': u'Leo Messi',
     u'notifications': False,
     u'profile_background_color': u'1A1B1F',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000151331158/MLDaq4hM.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000151331158/MLDaq4hM.jpeg',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/583545411/1412052592',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/589312545770475520/JUIeAS65_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/589312545770475520/JUIeAS65_normal.jpg',
     u'profile_link_color': u'2FC2EF',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'252429',
     u'profile_text_color': u'666666',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'messi10stats',
     u'statuses_count': 17072,
     u'time_zone': u'Karachi',
     u'url': None,
     u'utc_offset': 18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @messi10stats: Messi Messi Messi http://t.co/kzntJvndgU',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Feb 17 08:49:00 +0000 2013',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'\u062c\u064a\u062a \u0644\u0640 \u0622\u0644\u062f\u0646\u064a\u0622 \u0643\u0628\u064a\u0631 \u0624\u0628\u0641\u0622\u0631\u0642\u0647\u0627 \u0643\u0628\u064a\u0631 / \u0645\u0646 \u0632\u0639\u0644 \u0645\u0622\u0647\u0645\u0646\u064a \u0624\u0645\u0646 \u0631\u0636\u0649 \u0645\u0622\u0647\u0645\u0646\u064a Hajri live in U.S',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1124,
    u'follow_request_sent': False,
    u'followers_count': 277,
    u'following': False,
    u'friends_count': 186,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 1188848527,
    u'id_str': u'1188848527',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'ar',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'\u0627\u0644\u0647\u0627\u062c\u0631\u064a \u0639\u0628\u062f\u0627\u0644\u0644\u0647',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1188848527/1423715956',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/593193483055210497/I5tFXHlH_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/593193483055210497/I5tFXHlH_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'27597878',
    u'statuses_count': 8078,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472939121111040,
   u'id_str': u'641472939121111040',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'Lo de Messi es de otro mundo, gracias por quedarte genio!',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Nov 02 04:55:23 +0000 2014',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'~ Amo el futbol~ River plate ~ A.B.V.S ~ Bici Pasion ~ BicicletaMagica ~ Bombero Voluntario ~ Seguime y te sigo ~',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'facebook.com/maximiliano.va\u2026',
        u'expanded_url': u'https://www.facebook.com/maximiliano.valenzuela1',
        u'indices': [0, 23],
        u'url': u'https://t.co/NYQL1XGeQh'}]}},
    u'favourites_count': 381,
    u'follow_request_sent': False,
    u'followers_count': 239,
    u'following': False,
    u'friends_count': 318,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 2856166229,
    u'id_str': u'2856166229',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 1,
    u'location': u'Senillosa, Neuquen',
    u'name': u'Maxi\u2661',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2856166229/1441381332',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/641399470480093184/UkvzpsZg_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/641399470480093184/UkvzpsZg_normal.jpg',
    u'profile_link_color': u'3B94D9',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'000000',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': False,
    u'protected': False,
    u'screen_name': u'ExeeMaxy',
    u'statuses_count': 1790,
    u'time_zone': None,
    u'url': u'https://t.co/NYQL1XGeQh',
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 2778738110,
      u'id_str': u'2778738110',
      u'indices': [3, 15],
      u'name': u'La Polla de Messi\u2122',
      u'screen_name': u'soldadocFCB'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472938764599296,
   u'id_str': u'641472938764599296',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 11,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:42:34 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 16,
    u'favorited': False,
    u'geo': None,
    u'id': 641471736299393024,
    u'id_str': u'641471736299393024',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 11,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Hay una frase que dice: "Messi est\xe1 pero no est\xe1, de momento aparece y te hace un desastre y te cambia el partido" \U0001f64f\U0001f64f\U0001f64f',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Fri Aug 29 16:36:36 +0000 2014',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'El Bar\xe7a ser\xe1 el mejor equipo del mundo hasta que a m\xed me salga de los cojones. Me gusta el BVB. Manejo: @barcaenfotos Colaboro en: @HistoryMessi y @NacionFCB',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 36168,
     u'follow_request_sent': False,
     u'followers_count': 8360,
     u'following': False,
     u'friends_count': 88,
     u'geo_enabled': True,
     u'has_extended_profile': True,
     u'id': 2778738110,
     u'id_str': u'2778738110',
     u'is_translation_enabled': True,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 25,
     u'location': u'Puerto Rico ',
     u'name': u'La Polla de Messi\u2122',
     u'notifications': False,
     u'profile_background_color': u'000000',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2778738110/1441506278',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/640975396943454208/m-SmaIvC_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/640975396943454208/m-SmaIvC_normal.jpg',
     u'profile_link_color': u'89C9FA',
     u'profile_sidebar_border_color': u'000000',
     u'profile_sidebar_fill_color': u'000000',
     u'profile_text_color': u'000000',
     u'profile_use_background_image': False,
     u'protected': False,
     u'screen_name': u'soldadocFCB',
     u'statuses_count': 34932,
     u'time_zone': u'Eastern Time (US & Canada)',
     u'url': None,
     u'utc_offset': -14400,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @soldadocFCB: Hay una frase que dice: "Messi est\xe1 pero no est\xe1, de momento aparece y te hace un desastre y te cambia el partido" \U0001f64f\U0001f64f\U0001f64f',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon Feb 07 12:53:29 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'17. Amante de Italia & Argentina & CARP\u2764\ufe0f. ~Vivir,So\xf1ando~\u2654 Ins:Caroladicarlo, Snap: Caroladicarlo, Facebook: Carolina di carlo',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'facebook.com/caritO.dicarlo',
        u'expanded_url': u'http://www.facebook.com/caritO.dicarlo',
        u'indices': [0, 22],
        u'url': u'http://t.co/5nPlMABsVD'}]}},
    u'favourites_count': 46766,
    u'follow_request_sent': False,
    u'followers_count': 358,
    u'following': False,
    u'friends_count': 188,
    u'geo_enabled': True,
    u'has_extended_profile': True,
    u'id': 248649419,
    u'id_str': u'248649419',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 4,
    u'location': u'',
    u'name': u'Carito\u270c',
    u'notifications': False,
    u'profile_background_color': u'EBC1E0',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/559362132584570881/S0yq-ZFv.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/559362132584570881/S0yq-ZFv.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/248649419/1440760090',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/638476522370789377/5DEKtZrc_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/638476522370789377/5DEKtZrc_normal.jpg',
    u'profile_link_color': u'DD2E44',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'CarolaDicarlo',
    u'statuses_count': 41225,
    u'time_zone': u'London',
    u'url': u'http://t.co/5nPlMABsVD',
    u'utc_offset': 3600,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
      u'expanded_url': u'http://snpy.tv/1ivZeZj',
      u'indices': [44, 66],
      u'url': u'http://t.co/u3AIzt9nKq'}],
    u'user_mentions': [{u'id': 985172054,
      u'id_str': u'985172054',
      u'indices': [3, 18],
      u'name': u'GeniusFootball',
      u'screen_name': u'GeniusFootball'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472938722594816,
   u'id_str': u'641472938722594816',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 1292,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:30:45 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
       u'expanded_url': u'http://snpy.tv/1ivZeZj',
       u'indices': [24, 46],
       u'url': u'http://t.co/u3AIzt9nKq'}],
     u'user_mentions': []},
    u'favorite_count': 785,
    u'favorited': False,
    u'geo': None,
    u'id': 641468761917161472,
    u'id_str': u'641468761917161472',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'en',
    u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 1292,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Messi just did a Gotze  http://t.co/u3AIzt9nKq',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Sun Dec 02 18:47:35 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Bringing you the best stats, facts, pictures and videos! Business: higeniusfootball@gmail.com',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'purelyfootball.com',
         u'expanded_url': u'http://purelyfootball.com',
         u'indices': [0, 22],
         u'url': u'http://t.co/AL2B81nZD0'}]}},
     u'favourites_count': 639,
     u'follow_request_sent': False,
     u'followers_count': 758503,
     u'following': False,
     u'friends_count': 486,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 985172054,
     u'id_str': u'985172054',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 2402,
     u'location': u'Global',
     u'name': u'GeniusFootball',
     u'notifications': False,
     u'profile_background_color': u'131516',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000167677834/sRUYanwM.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000167677834/sRUYanwM.jpeg',
     u'profile_background_tile': True,
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/422821516019920896/qFEPUboh_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/422821516019920896/qFEPUboh_normal.jpeg',
     u'profile_link_color': u'009999',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'EFEFEF',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'GeniusFootball',
     u'statuses_count': 33426,
     u'time_zone': u'London',
     u'url': u'http://t.co/AL2B81nZD0',
     u'utc_offset': 3600,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @GeniusFootball: Messi just did a Gotze  http://t.co/u3AIzt9nKq',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Mar 05 01:26:00 +0000 2015',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 461,
    u'follow_request_sent': False,
    u'followers_count': 119,
    u'following': False,
    u'friends_count': 173,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 3071335643,
    u'id_str': u'3071335643',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'Jorge Nino',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/3071335643/1434909073',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/612678283877085184/bkMRHJlZ_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/612678283877085184/bkMRHJlZ_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'BoriiBro',
    u'statuses_count': 1005,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
      u'expanded_url': u'http://snpy.tv/1ivZeZj',
      u'indices': [90, 112],
      u'url': u'http://t.co/tc7sN7X48b'}],
    u'user_mentions': [{u'id': 2548990280,
      u'id_str': u'2548990280',
      u'indices': [3, 14],
      u'name': u'FootyVibez',
      u'screen_name': u'FootyVibez'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472938428887040,
   u'id_str': u'641472938428887040',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 38,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:40:55 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
       u'expanded_url': u'http://snpy.tv/1ivZeZj',
       u'indices': [74, 96],
       u'url': u'http://t.co/tc7sN7X48b'}],
     u'user_mentions': []},
    u'favorite_count': 29,
    u'favorited': False,
    u'geo': None,
    u'id': 641471320694239233,
    u'id_str': u'641471320694239233',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'en',
    u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 38,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Messi doesnt realize he scored the same goal that lost him the World Cup\U0001f480\nhttp://t.co/tc7sN7X48b',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Fri Jun 06 01:23:13 +0000 2014',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Your first touch can either make you or break you \u26bd\ufe0f',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 0,
     u'follow_request_sent': False,
     u'followers_count': 5603,
     u'following': False,
     u'friends_count': 9,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 2548990280,
     u'id_str': u'2548990280',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 3,
     u'location': u'',
     u'name': u'FootyVibez',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/585286360090578944/iiNWnG6Y.jpg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/585286360090578944/iiNWnG6Y.jpg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2548990280/1414287850',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/512356669389414400/msmEfDwO_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/512356669389414400/msmEfDwO_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'FootyVibez',
     u'statuses_count': 382,
     u'time_zone': u'Central Time (US & Canada)',
     u'url': None,
     u'utc_offset': -18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @FootyVibez: Messi doesnt realize he scored the same goal that lost him the World Cup\U0001f480\nhttp://t.co/tc7sN7X48b',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon Jun 04 04:33:51 +0000 2012',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 783,
    u'follow_request_sent': False,
    u'followers_count': 89,
    u'following': False,
    u'friends_count': 261,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 599012556,
    u'id_str': u'599012556',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 0,
    u'location': u'Dallas, TX',
    u'name': u'Sarah Miller',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/599012556/1427090949',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/579887589542367232/vvaooHRb_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/579887589542367232/vvaooHRb_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'SarahM1303',
    u'statuses_count': 346,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [78, 84], u'text': u'Messi'},
     {u'indices': [90, 96], u'text': u'Gotze'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'fb.me/6PeatqJXf',
      u'expanded_url': u'http://fb.me/6PeatqJXf',
      u'indices': [139, 140],
      u'url': u'http://t.co/GNQO8WnFZp'}],
    u'user_mentions': [{u'id': 83033770,
      u'id_str': u'83033770',
      u'indices': [3, 16],
      u'name': u'marcello anastasi',
      u'screen_name': u'scorpion2121'},
     {u'id': 565950898,
      u'id_str': u'565950898',
      u'indices': [48, 64],
      u'name': u'Alejandro Farffann',
      u'screen_name': u'farffanntastico'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472938131234816,
   u'id_str': u'641472938131234816',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 1,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:37:50 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [60, 66], u'text': u'Messi'},
      {u'indices': [72, 78], u'text': u'Gotze'}],
     u'symbols': [],
     u'urls': [{u'display_url': u'fb.me/6PeatqJXf',
       u'expanded_url': u'http://fb.me/6PeatqJXf',
       u'indices': [113, 135],
       u'url': u'http://t.co/GNQO8WnFZp'}],
     u'user_mentions': [{u'id': 565950898,
       u'id_str': u'565950898',
       u'indices': [30, 46],
       u'name': u'Alejandro Farffann',
       u'screen_name': u'farffanntastico'}]},
    u'favorite_count': 2,
    u'favorited': False,
    u'geo': None,
    u'id': 641470545331101696,
    u'id_str': u'641470545331101696',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 1,
    u'retweeted': False,
    u'source': u'<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>',
    u'text': u'Retweeted Alejandro Farffann (@farffanntastico):\n\nGolazo de #Messi a lo #Gotze, me hizo recordar el gol de la... http://t.co/GNQO8WnFZp',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Sat Oct 17 02:18:27 +0000 2009',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'Autor, Producer & Celebrety Chef of Fresco e Picante, 2015, The Scorpion Chef, 2012, Cooking Shows, Italian & Spanish rolls off the tongue easily as English.',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'scorpionchef.ca',
         u'expanded_url': u'http://www.scorpionchef.ca',
         u'indices': [0, 22],
         u'url': u'http://t.co/x7IhzPOFjq'}]}},
     u'favourites_count': 4024,
     u'follow_request_sent': False,
     u'followers_count': 466,
     u'following': False,
     u'friends_count': 1766,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 83033770,
     u'id_str': u'83033770',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 5,
     u'location': u'Aurora, Ontario',
     u'name': u'marcello anastasi',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/83033770/1415919406',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/478994159903076352/CwM7jJzc_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/478994159903076352/CwM7jJzc_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'scorpion2121',
     u'statuses_count': 6081,
     u'time_zone': u'Central Time (US & Canada)',
     u'url': u'http://t.co/x7IhzPOFjq',
     u'utc_offset': -18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @scorpion2121: Retweeted Alejandro Farffann (@farffanntastico):\n\nGolazo de #Messi a lo #Gotze, me hizo recordar el gol de la... http://t\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Apr 29 03:33:39 +0000 2012',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Periodista deportivo. Actualmente es Talento al aire / Analista de beIN SPORTS US y DIRECTV Latinoam\xe9rica',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'beinsports.tv',
        u'expanded_url': u'http://www.beinsports.tv/',
        u'indices': [0, 22],
        u'url': u'http://t.co/Vnleo4So2H'}]}},
    u'favourites_count': 8193,
    u'follow_request_sent': False,
    u'followers_count': 4424,
    u'following': False,
    u'friends_count': 1251,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 565950898,
    u'id_str': u'565950898',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 79,
    u'location': u'Miami',
    u'name': u'Alejandro Farffann',
    u'notifications': False,
    u'profile_background_color': u'131516',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme14/bg.gif',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme14/bg.gif',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/565950898/1370399605',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000867534125/TsDdOqKF_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000867534125/TsDdOqKF_normal.jpeg',
    u'profile_link_color': u'009999',
    u'profile_sidebar_border_color': u'EEEEEE',
    u'profile_sidebar_fill_color': u'EFEFEF',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'farffanntastico',
    u'statuses_count': 11128,
    u'time_zone': None,
    u'url': u'http://t.co/Vnleo4So2H',
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'flogvip.net/teenwolf/DFBDF\u2026',
      u'expanded_url': u'http://flogvip.net/teenwolf/DFBDFBDF',
      u'indices': [0, 22],
      u'url': u'http://t.co/QyVZtK4YPl'},
     {u'display_url': u'flogvip.net/teenwolf/GFGFDF',
      u'expanded_url': u'http://flogvip.net/teenwolf/GFGFDF',
      u'indices': [23, 45],
      u'url': u'http://t.co/jpxbyK4aXs'}],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472937854377984,
   u'id_str': u'641472937854377984',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'pt',
   u'metadata': {u'iso_language_code': u'pt', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
   u'text': u'http://t.co/QyVZtK4YPl\nhttp://t.co/jpxbyK4aXs\nMessi\nNeymar\nGago\nFranco Masini',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Jan 22 06:22:06 +0000 2015',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'disappointed but not surprised',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 0,
    u'follow_request_sent': False,
    u'followers_count': 1859,
    u'following': False,
    u'friends_count': 555,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 2991556455,
    u'id_str': u'2991556455',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'pt',
    u'listed_count': 1,
    u'location': u'',
    u'name': u'kira',
    u'notifications': False,
    u'profile_background_color': u'FFFFFF',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2991556455/1441771278',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/641461780447928321/nh36shgp_normal.png',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/641461780447928321/nh36shgp_normal.png',
    u'profile_link_color': u'333333',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': False,
    u'protected': False,
    u'screen_name': u'spacewalkwr',
    u'statuses_count': 5051,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'flogvip.net/teenwolf/DFBDF\u2026',
      u'expanded_url': u'http://flogvip.net/teenwolf/DFBDFBDF',
      u'indices': [0, 22],
      u'url': u'http://t.co/LJBIFGanpN'},
     {u'display_url': u'flogvip.net/teenwolf/GFGFDF',
      u'expanded_url': u'http://flogvip.net/teenwolf/GFGFDF',
      u'indices': [23, 45],
      u'url': u'http://t.co/nAxwOtljdg'}],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472937820864512,
   u'id_str': u'641472937820864512',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'pt',
   u'metadata': {u'iso_language_code': u'pt', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
   u'text': u'http://t.co/LJBIFGanpN\nhttp://t.co/nAxwOtljdg\nMessi\nNeymar\nGago\nFranco Masini',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon Jan 02 19:54:39 +0000 2012',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'RADIATE LOVE',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'flogvip.net/elliegoulding',
        u'expanded_url': u'http://www.flogvip.net/elliegoulding',
        u'indices': [0, 22],
        u'url': u'http://t.co/bY3G1i0iHm'}]}},
    u'favourites_count': 0,
    u'follow_request_sent': False,
    u'followers_count': 895,
    u'following': False,
    u'friends_count': 1843,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 453305108,
    u'id_str': u'453305108',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'pt',
    u'listed_count': 1,
    u'location': u'NY',
    u'name': u'elliegoulding',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/614066194/50gyogvnownxhcvd54zy.png',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/614066194/50gyogvnownxhcvd54zy.png',
    u'profile_background_tile': True,
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/1730241974/12_normal.png',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/1730241974/12_normal.png',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'needlittlelove_',
    u'statuses_count': 7743,
    u'time_zone': u'Brasilia',
    u'url': u'http://t.co/bY3G1i0iHm',
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'media': [{u'display_url': u'pic.twitter.com/aDW36sjAb5',
      u'expanded_url': u'http://twitter.com/Messiologia/status/641472388081819649/photo/1',
      u'id': 641472298764095488,
      u'id_str': u'641472298764095488',
      u'indices': [139, 140],
      u'media_url': u'http://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
      u'sizes': {u'large': {u'h': 573, u'resize': u'fit', u'w': 940},
       u'medium': {u'h': 365, u'resize': u'fit', u'w': 600},
       u'small': {u'h': 207, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641472388081819649,
      u'source_status_id_str': u'641472388081819649',
      u'source_user_id': 889476378,
      u'source_user_id_str': u'889476378',
      u'type': u'photo',
      u'url': u'http://t.co/aDW36sjAb5'}],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 889476378,
      u'id_str': u'889476378',
      u'indices': [3, 15],
      u'name': u'Messiolog\xeda',
      u'screen_name': u'Messiologia'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472937778905088,
   u'id_str': u'641472937778905088',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 73,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:45:09 +0000 2015',
    u'entities': {u'hashtags': [],
     u'media': [{u'display_url': u'pic.twitter.com/aDW36sjAb5',
       u'expanded_url': u'http://twitter.com/Messiologia/status/641472388081819649/photo/1',
       u'id': 641472298764095488,
       u'id_str': u'641472298764095488',
       u'indices': [118, 140],
       u'media_url': u'http://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
       u'sizes': {u'large': {u'h': 573, u'resize': u'fit', u'w': 940},
        u'medium': {u'h': 365, u'resize': u'fit', u'w': 600},
        u'small': {u'h': 207, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/aDW36sjAb5'}],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 55,
    u'favorited': False,
    u'geo': None,
    u'id': 641472388081819649,
    u'id_str': u'641472388081819649',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 73,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http://t.co/aDW36sjAb5',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Thu Oct 18 18:33:04 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Haci\xe9ndole el aguante al mejor del mundo.',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'messiologiatw.blogspot.com',
         u'expanded_url': u'http://messiologiatw.blogspot.com',
         u'indices': [0, 22],
         u'url': u'http://t.co/xpFeAGqm6c'}]}},
     u'favourites_count': 27019,
     u'follow_request_sent': False,
     u'followers_count': 25794,
     u'following': False,
     u'friends_count': 98,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 889476378,
     u'id_str': u'889476378',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 91,
     u'location': u'messiologiatw@gmail.com',
     u'name': u'Messiolog\xeda',
     u'notifications': False,
     u'profile_background_color': u'08BAF0',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/468969003604385792/6ak3eAUZ.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/468969003604385792/6ak3eAUZ.png',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/889476378/1418970869',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/545407312559484928/EtbfheBb_normal.png',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/545407312559484928/EtbfheBb_normal.png',
     u'profile_link_color': u'08BAF0',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Messiologia',
     u'statuses_count': 30448,
     u'time_zone': u'Caracas',
     u'url': u'http://t.co/xpFeAGqm6c',
     u'utc_offset': -16200,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   u'text': u'RT @Messiologia: Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Feb 10 13:50:45 +0000 2012',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Dancer // Doo7 crew // Seres vivientes crew // Orion saint // Gamer // MANCHESTER CITY // UA student // #TeamBreezy // snap: mikeeeloo',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'facebook.com/Mikel.slash',
        u'expanded_url': u'http://www.facebook.com/Mikel.slash',
        u'indices': [0, 22],
        u'url': u'http://t.co/mqVJzXagYR'}]}},
    u'favourites_count': 7422,
    u'follow_request_sent': False,
    u'followers_count': 1145,
    u'following': False,
    u'friends_count': 868,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 488466684,
    u'id_str': u'488466684',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 7,
    u'location': u'Argentina',
    u'name': u'MINIM\u0394L SW\u0394G',
    u'notifications': False,
    u'profile_background_color': u'FAFAFA',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000076596817/0fd79ecb7b22e598db28aabd289adeb9.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000076596817/0fd79ecb7b22e598db28aabd289adeb9.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/488466684/1439912933',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/636959498138189824/xOOeLSYq_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/636959498138189824/xOOeLSYq_normal.jpg',
    u'profile_link_color': u'89C9FA',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'E6F6F9',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'mikelperez6',
    u'statuses_count': 63893,
    u'time_zone': u'Amsterdam',
    u'url': u'http://t.co/mqVJzXagYR',
    u'utc_offset': 7200,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:21 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'flogvip.net/teenwolf/DFBDF\u2026',
      u'expanded_url': u'http://flogvip.net/teenwolf/DFBDFBDF',
      u'indices': [0, 22],
      u'url': u'http://t.co/4cZsGzJZfG'},
     {u'display_url': u'flogvip.net/teenwolf/GFGFDF',
      u'expanded_url': u'http://flogvip.net/teenwolf/GFGFDF',
      u'indices': [23, 45],
      u'url': u'http://t.co/JDCmuOIGPL'}],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472937770545153,
   u'id_str': u'641472937770545153',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'pt',
   u'metadata': {u'iso_language_code': u'pt', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
   u'text': u'http://t.co/4cZsGzJZfG\nhttp://t.co/JDCmuOIGPL\nMessi\nNeymar\nGago\nFranco Masini',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Jan 22 07:08:13 +0000 2015',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'i hate mondays',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 0,
    u'follow_request_sent': False,
    u'followers_count': 1658,
    u'following': False,
    u'friends_count': 554,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 2991628667,
    u'id_str': u'2991628667',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'pt',
    u'listed_count': 1,
    u'location': u'',
    u'name': u'laura',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2991628667/1441771619',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/641462585464877056/7f3t3cyY_normal.png',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/641462585464877056/7f3t3cyY_normal.png',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'2021visions',
    u'statuses_count': 5052,
    u'time_zone': u'Mid-Atlantic',
    u'url': None,
    u'utc_offset': -7200,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 179570360,
      u'id_str': u'179570360',
      u'indices': [1, 16],
      u'name': u'Teto',
      u'screen_name': u'chilakilleitor'},
     {u'id': 3331806425,
      u'id_str': u'3331806425',
      u'indices': [123, 139],
      u'name': u'Hugo S\xe1nchez',
      u'screen_name': u'otroHugoSanchez'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472937715875840,
   u'id_str': u'641472937715875840',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://www.twitter.com" rel="nofollow">Twitter for BlackBerry</a>',
   u'text': u'"@chilakilleitor: Que no mamen, dijeron que no iba a jugar messi, ese empate no vale" golasooo de el anano!@Chava_lglesias @otroHugoSanchez',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Wed Oct 20 01:21:02 +0000 2010',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 22,
    u'follow_request_sent': False,
    u'followers_count': 83,
    u'following': False,
    u'friends_count': 147,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 205044229,
    u'id_str': u'205044229',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 3,
    u'location': u'Que t importaaaa',
    u'name': u'NoLlo StArk Oficial',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/425657686844112896/2AqGDsC7_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/425657686844112896/2AqGDsC7_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'NolloStarK',
    u'statuses_count': 2406,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
      u'expanded_url': u'http://vine.co/v/etDmrE5dLBD',
      u'indices': [75, 97],
      u'url': u'http://t.co/4KLvXZxd7D'}],
    u'user_mentions': [{u'id': 3181952109,
      u'id_str': u'3181952109',
      u'indices': [3, 18],
      u'name': u'Fuerte al Medio',
      u'screen_name': u'FFuerteAlMedio'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472937669861376,
   u'id_str': u'641472937669861376',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 53,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:31:09 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
       u'expanded_url': u'http://vine.co/v/etDmrE5dLBD',
       u'indices': [55, 77],
       u'url': u'http://t.co/4KLvXZxd7D'}],
     u'user_mentions': []},
    u'favorite_count': 21,
    u'favorited': False,
    u'geo': None,
    u'id': 641468861817225216,
    u'id_str': u'641468861817225216',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 53,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    u'text': u'Habilitaci\xf3n de Ag\xfcero y definici\xf3n exquisita de Messi http://t.co/4KLvXZxd7D',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Sun Apr 19 05:54:45 +0000 2015',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'\xa1Fuerte al medio...la p\xe1gina que deja todo en cada informaci\xf3n!',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'fuertealmediofutbol.wordpress.com',
         u'expanded_url': u'http://fuertealmediofutbol.wordpress.com/',
         u'indices': [0, 22],
         u'url': u'http://t.co/i1QeAsXbSc'}]}},
     u'favourites_count': 13,
     u'follow_request_sent': False,
     u'followers_count': 3299,
     u'following': False,
     u'friends_count': 43,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 3181952109,
     u'id_str': u'3181952109',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 4,
     u'location': u'Argentina',
     u'name': u'Fuerte al Medio',
     u'notifications': False,
     u'profile_background_color': u'000000',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/3181952109/1440380593',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/599446615338983424/aEQscLry_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/599446615338983424/aEQscLry_normal.jpg',
     u'profile_link_color': u'4A913C',
     u'profile_sidebar_border_color': u'000000',
     u'profile_sidebar_fill_color': u'000000',
     u'profile_text_color': u'000000',
     u'profile_use_background_image': False,
     u'protected': False,
     u'screen_name': u'FFuerteAlMedio',
     u'statuses_count': 1350,
     u'time_zone': None,
     u'url': u'http://t.co/i1QeAsXbSc',
     u'utc_offset': None,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @FFuerteAlMedio: Habilitaci\xf3n de Ag\xfcero y definici\xf3n exquisita de Messi http://t.co/4KLvXZxd7D',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Mar 21 23:44:17 +0000 2015',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'//\u2764River_Plate\u2764//\u2b5035\u2b50//Marcelo Barovero\u2764 #1//*La Banda*//CAMPEONES DE AMERICA\u2764//#Mi_Pap\xe1#Mi_\xc1ngel//\nWsp: 3416606905 \u2665',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 962,
    u'follow_request_sent': False,
    u'followers_count': 193,
    u'following': False,
    u'friends_count': 256,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 3103109253,
    u'id_str': u'3103109253',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'Rosario, Argentina',
    u'name': u'\u2654\u260505/08/2015\u2605\u2654',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/3103109253/1441045126',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/638414394150506496/kic_Arrv_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/638414394150506496/kic_Arrv_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Sasha_Catalina',
    u'statuses_count': 4353,
    u'time_zone': u'Pacific Time (US & Canada)',
    u'url': None,
    u'utc_offset': -25200,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 1564290084,
      u'id_str': u'1564290084',
      u'indices': [0, 10],
      u'name': u'Riverdemivida\u2665',
      u'screen_name': u'TIIIIIITI'},
     {u'id': 2227442288,
      u'id_str': u'2227442288',
      u'indices': [11, 27],
      u'name': u'Nehu\xe9n Garbarini',
      u'screen_name': u'GarbariniNehuen'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472937623703552,
   u'id_str': u'641472937623703552',
   u'in_reply_to_screen_name': u'TIIIIIITI',
   u'in_reply_to_status_id': 641472582533967872,
   u'in_reply_to_status_id_str': u'641472582533967872',
   u'in_reply_to_user_id': 1564290084,
   u'in_reply_to_user_id_str': u'1564290084',
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'@TIIIIIITI @GarbariniNehuen nose lo poco que vi, messi fue uno mas en la cancha.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Sep 22 05:44:11 +0000 2012',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Sin musica y amigos, Gonza no es gonza.',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'facebook.com/gonza.vallejo.3',
        u'expanded_url': u'http://www.facebook.com/gonza.vallejo.3',
        u'indices': [0, 22],
        u'url': u'http://t.co/a2kXReDVyc'}]}},
    u'favourites_count': 1142,
    u'follow_request_sent': False,
    u'followers_count': 382,
    u'following': False,
    u'friends_count': 217,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 839157732,
    u'id_str': u'839157732',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 2,
    u'location': u'Trelew, Chubut',
    u'name': u'Gonzalo Leonel ',
    u'notifications': False,
    u'profile_background_color': u'1D24AB',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/461271368391094272/6tObFob_.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/461271368391094272/6tObFob_.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/839157732/1393052768',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/639662240438874112/P9MLMThI_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/639662240438874112/P9MLMThI_normal.jpg',
    u'profile_link_color': u'E09224',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'GonzaaaVallejo',
    u'statuses_count': 19516,
    u'time_zone': u'Brasilia',
    u'url': u'http://t.co/a2kXReDVyc',
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [15, 27], u'text': u'GiraPorEEUU'},
     {u'indices': [72, 78], u'text': u'Messi'}],
    u'media': [{u'display_url': u'pic.twitter.com/3PErTqAdIV',
      u'expanded_url': u'http://twitter.com/Argentina/status/641472333845282816/photo/1',
      u'id': 641472323267231744,
      u'id_str': u'641472323267231744',
      u'indices': [109, 131],
      u'media_url': u'http://pbs.twimg.com/media/COb3remWgAA8zMs.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb3remWgAA8zMs.jpg',
      u'sizes': {u'large': {u'h': 682, u'resize': u'fit', u'w': 1023},
       u'medium': {u'h': 400, u'resize': u'fit', u'w': 600},
       u'small': {u'h': 226, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641472333845282816,
      u'source_status_id_str': u'641472333845282816',
      u'source_user_id': 2495199115,
      u'source_user_id_str': u'2495199115',
      u'type': u'photo',
      u'url': u'http://t.co/3PErTqAdIV'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'goo.gl/AAXBUw',
      u'expanded_url': u'http://goo.gl/AAXBUw',
      u'indices': [86, 108],
      u'url': u'http://t.co/zrtnM9Ucg9'}],
    u'user_mentions': [{u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [3, 13],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'},
     {u'id': 139092348,
      u'id_str': u'139092348',
      u'indices': [53, 69],
      u'name': u'Sergio Kun Aguero',
      u'screen_name': u'aguerosergiokun'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472937430765568,
   u'id_str': u'641472937430765568',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 62,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:44:57 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [0, 12], u'text': u'GiraPorEEUU'},
      {u'indices': [57, 63], u'text': u'Messi'}],
     u'media': [{u'display_url': u'pic.twitter.com/3PErTqAdIV',
       u'expanded_url': u'http://twitter.com/Argentina/status/641472333845282816/photo/1',
       u'id': 641472323267231744,
       u'id_str': u'641472323267231744',
       u'indices': [94, 116],
       u'media_url': u'http://pbs.twimg.com/media/COb3remWgAA8zMs.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb3remWgAA8zMs.jpg',
       u'sizes': {u'large': {u'h': 682, u'resize': u'fit', u'w': 1023},
        u'medium': {u'h': 400, u'resize': u'fit', u'w': 600},
        u'small': {u'h': 226, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/3PErTqAdIV'}],
     u'symbols': [],
     u'urls': [{u'display_url': u'goo.gl/AAXBUw',
       u'expanded_url': u'http://goo.gl/AAXBUw',
       u'indices': [71, 93],
       u'url': u'http://t.co/zrtnM9Ucg9'}],
     u'user_mentions': [{u'id': 139092348,
       u'id_str': u'139092348',
       u'indices': [38, 54],
       u'name': u'Sergio Kun Aguero',
       u'screen_name': u'aguerosergiokun'}]},
    u'favorite_count': 84,
    u'favorited': False,
    u'geo': None,
    u'id': 641472333845282816,
    u'id_str': u'641472333845282816',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 62,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'#GiraPorEEUU Volv\xe9 a ver los goles de @aguerosergiokun y #Messi --&gt; http://t.co/zrtnM9Ucg9 http://t.co/3PErTqAdIV',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed May 14 22:28:45 +0000 2014',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'Twitter oficial de la Selecci\xf3n Argentina. Fan Page: http://t.co/ztPTvzLubx\u2026',
     u'entities': {u'description': {u'urls': [{u'display_url': u'facebook.com/AFASeleccionAr',
         u'expanded_url': u'http://facebook.com/AFASeleccionAr',
         u'indices': [53, 75],
         u'url': u'http://t.co/ztPTvzLubx'}]},
      u'url': {u'urls': [{u'display_url': u'afa.com.ar',
         u'expanded_url': u'http://afa.com.ar',
         u'indices': [0, 22],
         u'url': u'http://t.co/si6hz2DjJT'}]}},
     u'favourites_count': 123,
     u'follow_request_sent': False,
     u'followers_count': 1648755,
     u'following': False,
     u'friends_count': 49,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 2495199115,
     u'id_str': u'2495199115',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 2215,
     u'location': u'Argentina',
     u'name': u'Selecci\xf3n Argentina',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2495199115/1441578232',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Argentina',
     u'statuses_count': 19954,
     u'time_zone': u'Buenos Aires',
     u'url': u'http://t.co/si6hz2DjJT',
     u'utc_offset': -10800,
     u'verified': True}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @Argentina: #GiraPorEEUU Volv\xe9 a ver los goles de @aguerosergiokun y #Messi --&gt; http://t.co/zrtnM9Ucg9 http://t.co/3PErTqAdIV',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Mar 29 01:15:53 +0000 2014',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1127,
    u'follow_request_sent': False,
    u'followers_count': 46,
    u'following': False,
    u'friends_count': 287,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 2416704428,
    u'id_str': u'2416704428',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'Argentina',
    u'name': u'Maria Laura Cortina',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2416704428/1417822795',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/627651780541874176/gQNb53a5_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/627651780541874176/gQNb53a5_normal.jpg',
    u'profile_link_color': u'3B94D9',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'000000',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': False,
    u'protected': False,
    u'screen_name': u'MaLaura1367',
    u'statuses_count': 1765,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [15, 30],
      u'text': u'VamosArgentina'}],
    u'media': [{u'display_url': u'pic.twitter.com/SRjC51xzac',
      u'expanded_url': u'http://twitter.com/Argentina/status/641469007682519040/photo/1',
      u'id': 641468622649577472,
      u'id_str': u'641468622649577472',
      u'indices': [139, 140],
      u'media_url': u'http://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
      u'sizes': {u'large': {u'h': 570, u'resize': u'fit', u'w': 570},
       u'medium': {u'h': 570, u'resize': u'fit', u'w': 570},
       u'small': {u'h': 340, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641469007682519040,
      u'source_status_id_str': u'641469007682519040',
      u'source_user_id': 2495199115,
      u'source_user_id_str': u'2495199115',
      u'type': u'photo',
      u'url': u'http://t.co/SRjC51xzac'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'goo.gl/bzChAJ',
      u'expanded_url': u'http://goo.gl/bzChAJ',
      u'indices': [109, 131],
      u'url': u'http://t.co/LmWU4B29ZZ'}],
    u'user_mentions': [{u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [3, 13],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472936549986304,
   u'id_str': u'641472936549986304',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 661,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:31:44 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [0, 15],
       u'text': u'VamosArgentina'}],
     u'media': [{u'display_url': u'pic.twitter.com/SRjC51xzac',
       u'expanded_url': u'http://twitter.com/Argentina/status/641469007682519040/photo/1',
       u'id': 641468622649577472,
       u'id_str': u'641468622649577472',
       u'indices': [117, 139],
       u'media_url': u'http://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
       u'sizes': {u'large': {u'h': 570, u'resize': u'fit', u'w': 570},
        u'medium': {u'h': 570, u'resize': u'fit', u'w': 570},
        u'small': {u'h': 340, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/SRjC51xzac'}],
     u'symbols': [],
     u'urls': [{u'display_url': u'goo.gl/bzChAJ',
       u'expanded_url': u'http://goo.gl/bzChAJ',
       u'indices': [94, 116],
       u'url': u'http://t.co/LmWU4B29ZZ'}],
     u'user_mentions': []},
    u'favorite_count': 513,
    u'favorited': False,
    u'geo': None,
    u'id': 641469007682519040,
    u'id_str': u'641469007682519040',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 661,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'#VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://t.co/SRjC51xzac',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed May 14 22:28:45 +0000 2014',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'Twitter oficial de la Selecci\xf3n Argentina. Fan Page: http://t.co/ztPTvzLubx\u2026',
     u'entities': {u'description': {u'urls': [{u'display_url': u'facebook.com/AFASeleccionAr',
         u'expanded_url': u'http://facebook.com/AFASeleccionAr',
         u'indices': [53, 75],
         u'url': u'http://t.co/ztPTvzLubx'}]},
      u'url': {u'urls': [{u'display_url': u'afa.com.ar',
         u'expanded_url': u'http://afa.com.ar',
         u'indices': [0, 22],
         u'url': u'http://t.co/si6hz2DjJT'}]}},
     u'favourites_count': 123,
     u'follow_request_sent': False,
     u'followers_count': 1648755,
     u'following': False,
     u'friends_count': 49,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 2495199115,
     u'id_str': u'2495199115',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 2215,
     u'location': u'Argentina',
     u'name': u'Selecci\xf3n Argentina',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2495199115/1441578232',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Argentina',
     u'statuses_count': 19954,
     u'time_zone': u'Buenos Aires',
     u'url': u'http://t.co/si6hz2DjJT',
     u'utc_offset': -10800,
     u'verified': True}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @Argentina: #VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Jan 31 17:08:04 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Paciencia es la clave del \xe9xito',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 306,
    u'follow_request_sent': False,
    u'followers_count': 298,
    u'following': False,
    u'friends_count': 1006,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 1137417116,
    u'id_str': u'1137417116',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 1,
    u'location': u'Neuqu\xe9n, Argentina',
    u'name': u'Nicolas',
    u'notifications': False,
    u'profile_background_color': u'0099B9',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme4/bg.gif',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme4/bg.gif',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1137417116/1425012499',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/635345076055621632/GQD4FqrN_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/635345076055621632/GQD4FqrN_normal.jpg',
    u'profile_link_color': u'0099B9',
    u'profile_sidebar_border_color': u'5ED4DC',
    u'profile_sidebar_fill_color': u'95E8EC',
    u'profile_text_color': u'3C3940',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'cervantnico',
    u'statuses_count': 5410,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 357666969,
      u'id_str': u'357666969',
      u'indices': [0, 11],
      u'name': u'Quint\xedn',
      u'screen_name': u'quintinLLP'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472935493025792,
   u'id_str': u'641472935493025792',
   u'in_reply_to_screen_name': u'quintinLLP',
   u'in_reply_to_status_id': 641472310592077824,
   u'in_reply_to_status_id_str': u'641472310592077824',
   u'in_reply_to_user_id': 357666969,
   u'in_reply_to_user_id_str': u'357666969',
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   u'text': u'@quintinLLP A Lavezzi lo veo m\xe1s maduro, decide bien. Igual, arriba de titulares Messi, Di Mar\xeda y Aguero.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Jan 14 23:05:16 +0000 2010',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Internet, Messi&Ginobili&anyargentinianplayer fan..., ....uff! desp. sigo',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 183,
    u'follow_request_sent': False,
    u'followers_count': 134,
    u'following': False,
    u'friends_count': 916,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 104962840,
    u'id_str': u'104962840',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 1,
    u'location': u'Azul',
    u'name': u'alejandro burgos ',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/624679105364160512/9ObqMKs5.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/624679105364160512/9ObqMKs5.jpg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/104962840/1437770188',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/1932519327/Foto0086_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/1932519327/Foto0086_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'000000',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'alejandroburgos',
    u'statuses_count': 404,
    u'time_zone': u'Brasilia',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
      u'expanded_url': u'http://vine.co/v/etDmrE5dLBD',
      u'indices': [78, 100],
      u'url': u'http://t.co/lCa6WMBE6r'}],
    u'user_mentions': [{u'id': 2239782103,
      u'id_str': u'2239782103',
      u'indices': [3, 19],
      u'name': u'MARIO RIVERETTI',
      u'screen_name': u'RiverettiSports'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472935484485632,
   u'id_str': u'641472935484485632',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 85,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:28:05 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
       u'expanded_url': u'http://vine.co/v/etDmrE5dLBD',
       u'indices': [57, 79],
       u'url': u'http://t.co/lCa6WMBE6r'}],
     u'user_mentions': []},
    u'favorite_count': 59,
    u'favorited': False,
    u'geo': None,
    u'id': 641468091805888512,
    u'id_str': u'641468091805888512',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 85,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'Y cuanto tienes a Messi, pues nada, Messi hizo un Messi: http://t.co/lCa6WMBE6r',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Tue Dec 10 21:16:45 +0000 2013',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'El futuro del periodismo deportivo \u26bd\ufe0f\u26be\ufe0f | Los deportes son mi pan de cada d\xeda | Corresponsal en @SoloDeporteMX | Contacto: contactoriveretti@gmail.com',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'instagram.com/marioriveretti',
         u'expanded_url': u'http://instagram.com/marioriveretti',
         u'indices': [0, 22],
         u'url': u'http://t.co/KJMwceE5Xz'}]}},
     u'favourites_count': 3511,
     u'follow_request_sent': False,
     u'followers_count': 32544,
     u'following': False,
     u'friends_count': 762,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 2239782103,
     u'id_str': u'2239782103',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 154,
     u'location': u'Distrito Federal, M\xe9xico',
     u'name': u'MARIO RIVERETTI',
     u'notifications': False,
     u'profile_background_color': u'FFFFFF',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/435181313314660353/ao3qdU1F.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/435181313314660353/ao3qdU1F.jpeg',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2239782103/1441735356',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/638714205248483328/ttdmWB7b_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/638714205248483328/ttdmWB7b_normal.jpg',
     u'profile_link_color': u'020414',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': False,
     u'protected': False,
     u'screen_name': u'RiverettiSports',
     u'statuses_count': 16172,
     u'time_zone': u'Central Time (US & Canada)',
     u'url': u'http://t.co/KJMwceE5Xz',
     u'utc_offset': -18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @RiverettiSports: Y cuanto tienes a Messi, pues nada, Messi hizo un Messi: http://t.co/lCa6WMBE6r',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Wed Nov 23 23:37:32 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 394,
    u'follow_request_sent': False,
    u'followers_count': 639,
    u'following': False,
    u'friends_count': 742,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 419920112,
    u'id_str': u'419920112',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 1,
    u'location': u'Guatemala',
    u'name': u'Hans David',
    u'notifications': False,
    u'profile_background_color': u'1A1B1F',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/471729750210146304/1T32Hos2.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/471729750210146304/1T32Hos2.jpeg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/419920112/1438023403',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/639243352576163840/Utn0WLNc_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/639243352576163840/Utn0WLNc_normal.jpg',
    u'profile_link_color': u'2FC2EF',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'252429',
    u'profile_text_color': u'666666',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'HansDavid__',
    u'statuses_count': 5798,
    u'time_zone': u'Mountain Time (US & Canada)',
    u'url': None,
    u'utc_offset': -21600,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 1480648777,
      u'id_str': u'1480648777',
      u'indices': [3, 15],
      u'name': u'El Fernet',
      u'screen_name': u'elfernetsoy'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472935388184576,
   u'id_str': u'641472935388184576',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 222,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:33:24 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 94,
    u'favorited': False,
    u'geo': None,
    u'id': 641469427980984320,
    u'id_str': u'641469427980984320',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 222,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'Messi es todo lo que esta bien',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Mon Jun 03 21:05:37 +0000 2013',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'La vida le dio Fernet y el ferneteo',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 92375,
     u'follow_request_sent': False,
     u'followers_count': 38912,
     u'following': False,
     u'friends_count': 127,
     u'geo_enabled': False,
     u'has_extended_profile': True,
     u'id': 1480648777,
     u'id_str': u'1480648777',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 23,
     u'location': u'Argentina',
     u'name': u'El Fernet',
     u'notifications': False,
     u'profile_background_color': u'131516',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme14/bg.gif',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme14/bg.gif',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1480648777/1441734451',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/626927928635469825/JezQSeow_normal.png',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/626927928635469825/JezQSeow_normal.png',
     u'profile_link_color': u'009999',
     u'profile_sidebar_border_color': u'EEEEEE',
     u'profile_sidebar_fill_color': u'EFEFEF',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'elfernetsoy',
     u'statuses_count': 6210,
     u'time_zone': u'Buenos Aires',
     u'url': None,
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   u'text': u'RT @elfernetsoy: Messi es todo lo que esta bien',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Mar 01 06:44:06 +0000 2015',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'BAILARINA  @JustinBieber Michael Jackson M\u03b9\u2113\u2113\u03c3\u03b7\u03b1\u044f\u03b9\u03b1 SEGUIMEYTESIGO \u264eFC BARCELONA @Paulitadobom(06/03/15)MI SUE\xd1O ES CONOSERLOS DRIUSSI MORA CAVE  BALANTA PONZIO',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1311,
    u'follow_request_sent': False,
    u'followers_count': 1335,
    u'following': False,
    u'friends_count': 997,
    u'geo_enabled': True,
    u'has_extended_profile': True,
    u'id': 3065228033,
    u'id_str': u'3065228033',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 6,
    u'location': u'',
    u'name': u'\u25cf\u032e\u032e\u0303\u2022M\u03b9\u2113\u2113\u03c3\u03b7\u03b1\u044f\u03b9\u03b1\u2020\u2605',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/618641996178178048/0UaZbG4o.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/618641996178178048/0UaZbG4o.jpg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/3065228033/1441773850',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/641371791747907584/6B9YYPK0_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/641371791747907584/6B9YYPK0_normal.jpg',
    u'profile_link_color': u'AB8C02',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'FlorzitaPerez93',
    u'statuses_count': 21366,
    u'time_zone': u'Atlantic Time (Canada)',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 226787667,
      u'id_str': u'226787667',
      u'indices': [3, 14],
      u'name': u'Braian Molina',
      u'screen_name': u'BraiMolina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472934813564928,
   u'id_str': u'641472934813564928',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 93,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:38:40 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 46,
    u'favorited': False,
    u'geo': None,
    u'id': 641470756279427072,
    u'id_str': u'641470756279427072',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 93,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    u'text': u'Me puedo llegar a pelear con todo el mundo por defender a Messi. Es \xfanico y ninguno va a ser como el. Por algo es el mejor del mundo',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed Dec 15 02:24:34 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Jugador E Hincha Del Club Atl\xe9tico River Plate.;Todo lo puedo en Cristo que me Fortalece; Nacimiento: 17-04-95',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 834,
     u'follow_request_sent': False,
     u'followers_count': 1738,
     u'following': False,
     u'friends_count': 95,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 226787667,
     u'id_str': u'226787667',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 16,
     u'location': u'Moreno',
     u'name': u'Braian Molina',
     u'notifications': False,
     u'profile_background_color': u'131516',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/849711845/d9f8d42a723c993bf7c8105a4307e8b9.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/849711845/d9f8d42a723c993bf7c8105a4307e8b9.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/226787667/1431670253',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/599094590793187328/9h_yyOiE_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/599094590793187328/9h_yyOiE_normal.jpg',
     u'profile_link_color': u'009999',
     u'profile_sidebar_border_color': u'000000',
     u'profile_sidebar_fill_color': u'EFEFEF',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'BraiMolina',
     u'statuses_count': 7033,
     u'time_zone': u'Brasilia',
     u'url': None,
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @BraiMolina: Me puedo llegar a pelear con todo el mundo por defender a Messi. Es \xfanico y ninguno va a ser como el. Por algo es el mejor \u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Sep 08 17:43:13 +0000 2012',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'River,lo demas importa poco.',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 9504,
    u'follow_request_sent': False,
    u'followers_count': 494,
    u'following': False,
    u'friends_count': 499,
    u'geo_enabled': True,
    u'has_extended_profile': True,
    u'id': 811379089,
    u'id_str': u'811379089',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'Emiliu\u270c',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/811379089/1427652676',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/638439812039581696/cJaKOF6z_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/638439812039581696/cJaKOF6z_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Emi_Liuzzo',
    u'statuses_count': 7238,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [21, 27], u'text': u'VIDEO'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'vine.co/v/etDKHlwI3PT',
      u'expanded_url': u'https://vine.co/v/etDKHlwI3PT',
      u'indices': [123, 140],
      u'url': u'https://t.co/5ddLBfxJWk'}],
    u'user_mentions': [{u'id': 472208861,
      u'id_str': u'472208861',
      u'indices': [3, 19],
      u'name': u'FootballFacts101',
      u'screen_name': u'FootballFact101'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472934435885056,
   u'id_str': u'641472934435885056',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 56,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:32:29 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [0, 6], u'text': u'VIDEO'}],
     u'symbols': [],
     u'urls': [{u'display_url': u'vine.co/v/etDKHlwI3PT',
       u'expanded_url': u'https://vine.co/v/etDKHlwI3PT',
       u'indices': [102, 125],
       u'url': u'https://t.co/5ddLBfxJWk'}],
     u'user_mentions': []},
    u'favorite_count': 37,
    u'favorited': False,
    u'geo': None,
    u'id': 641469200410746880,
    u'id_str': u'641469200410746880',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'en',
    u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 56,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'#VIDEO Lionel Messi makes it 2-2...he learned that from Mario Gotze last year in the World Cup final. https://t.co/5ddLBfxJWk',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Mon Jan 23 18:22:45 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'@FootballFact101-Facts, Stats, Updates...With Personality..Enjoy. IG: Boss_traveler',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 1810,
     u'follow_request_sent': False,
     u'followers_count': 170137,
     u'following': False,
     u'friends_count': 247,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 472208861,
     u'id_str': u'472208861',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 1127,
     u'location': u'Worldwide',
     u'name': u'FootballFacts101',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/564999866/FF_Background_001.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/564999866/FF_Background_001.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/472208861/1404432691',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/2231764166/footballfacts101_normal.png',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/2231764166/footballfacts101_normal.png',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'FootballFact101',
     u'statuses_count': 61222,
     u'time_zone': u'London',
     u'url': None,
     u'utc_offset': 3600,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @FootballFact101: #VIDEO Lionel Messi makes it 2-2...he learned that from Mario Gotze last year in the World Cup final. https://t.co/5dd\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Oct 02 14:26:26 +0000 2009',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Verified Seller #1274 | Die hard Manchester United! | CP : 087853750972 , BBM : 7FA19575 , Line : gedyginandaa .',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'alseace2013.blogspot.com',
        u'expanded_url': u'http://alseace2013.blogspot.com',
        u'indices': [0, 22],
        u'url': u'http://t.co/qP0mnuP8jH'}]}},
    u'favourites_count': 222,
    u'follow_request_sent': False,
    u'followers_count': 533,
    u'following': False,
    u'friends_count': 579,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 79194152,
    u'id_str': u'79194152',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 2,
    u'location': u'Old Trafford, Manchester',
    u'name': u'Gedy Ginanda Fajri',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/178351249/Pembangunan_Stadion_Senayan.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/178351249/Pembangunan_Stadion_Senayan.jpg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/79194152/1422937654',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/625223305809625088/k5mUI7_Z_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/625223305809625088/k5mUI7_Z_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'GedyGinandaa',
    u'statuses_count': 21533,
    u'time_zone': u'Jakarta',
    u'url': u'http://t.co/qP0mnuP8jH',
    u'utc_offset': 25200,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
      u'expanded_url': u'http://snpy.tv/1ivZeZj',
      u'indices': [46, 68],
      u'url': u'http://t.co/tDVihBkjEY'}],
    u'user_mentions': [{u'id': 1687185738,
      u'id_str': u'1687185738',
      u'indices': [3, 15],
      u'name': u'Mr F\xfatbol \u26bd\ufe0f',
      u'screen_name': u'SoyMrFutbol'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472934360432640,
   u'id_str': u'641472934360432640',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'sk',
   u'metadata': {u'iso_language_code': u'sk', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 120,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:33:06 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
       u'expanded_url': u'http://snpy.tv/1ivZeZj',
       u'indices': [29, 51],
       u'url': u'http://t.co/tDVihBkjEY'}],
     u'user_mentions': []},
    u'favorite_count': 148,
    u'favorited': False,
    u'geo': None,
    u'id': 641469354161238016,
    u'id_str': u'641469354161238016',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'sk',
    u'metadata': {u'iso_language_code': u'sk', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 120,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Golazo de Messi. A lo G\xf6tze\U0001f602 http://t.co/tDVihBkjEY',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed Aug 21 02:26:50 +0000 2013',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Tenemos toda la infomaci\xf3n sobre el deporte mas hermoso del mundo. Rafael 20/08/13 creada. info: #Publicaris70@gmail.com',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'Instagram.com/IsFutbol',
         u'expanded_url': u'http://Instagram.com/IsFutbol',
         u'indices': [0, 22],
         u'url': u'http://t.co/1mLIvdEty4'}]}},
     u'favourites_count': 18356,
     u'follow_request_sent': False,
     u'followers_count': 297948,
     u'following': False,
     u'friends_count': 114504,
     u'geo_enabled': True,
     u'has_extended_profile': True,
     u'id': 1687185738,
     u'id_str': u'1687185738',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 449,
     u'location': u'En el campo. M\xe9xico.',
     u'name': u'Mr F\xfatbol \u26bd\ufe0f',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000056179542/0ebd90972e64aae6f46239fc13643399.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000056179542/0ebd90972e64aae6f46239fc13643399.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1687185738/1421805465',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/638520126938050561/S5tt9RuT_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/638520126938050561/S5tt9RuT_normal.jpg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'SoyMrFutbol',
     u'statuses_count': 8333,
     u'time_zone': u'Central Time (US & Canada)',
     u'url': u'http://t.co/1mLIvdEty4',
     u'utc_offset': -18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @SoyMrFutbol: Golazo de Messi. A lo G\xf6tze\U0001f602 http://t.co/tDVihBkjEY',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat May 28 16:16:50 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1276,
    u'follow_request_sent': False,
    u'followers_count': 381,
    u'following': False,
    u'friends_count': 1054,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 306879749,
    u'id_str': u'306879749',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 1,
    u'location': u'El salvador ',
    u'name': u'manuel contreras',
    u'notifications': False,
    u'profile_background_color': u'131516',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme14/bg.gif',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme14/bg.gif',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/306879749/1435431973',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/635210691226374144/qc_H7UIy_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/635210691226374144/qc_H7UIy_normal.jpg',
    u'profile_link_color': u'009999',
    u'profile_sidebar_border_color': u'EEEEEE',
    u'profile_sidebar_fill_color': u'EFEFEF',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'manu3l86',
    u'statuses_count': 6534,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472934306009088,
   u'id_str': u'641472934306009088',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'Para mi todo lo que haga messi esta bien.. Si empieza a hacer gol el contra YO se lo festejo',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Aug 22 23:05:37 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Buenos Aires, Misiones, Tierra del Fuego y La pampa.\nCanal de Youtube: https://t.co/T9mj8LQ9U7',
    u'entities': {u'description': {u'urls': [{u'display_url': u'youtube.com/channel/UCSVLR\u2026',
        u'expanded_url': u'https://www.youtube.com/channel/UCSVLRGg6Tpl5a7YXpvSeE9A',
        u'indices': [71, 94],
        u'url': u'https://t.co/T9mj8LQ9U7'}]},
     u'url': {u'urls': [{u'display_url': u'instagram.com/fransuaa_2015/',
        u'expanded_url': u'https://instagram.com/fransuaa_2015/',
        u'indices': [0, 23],
        u'url': u'https://t.co/282Vizzc59'}]}},
    u'favourites_count': 1179,
    u'follow_request_sent': False,
    u'followers_count': 2089,
    u'following': False,
    u'friends_count': 1967,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 1692329497,
    u'id_str': u'1692329497',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 9,
    u'location': u'Argentina',
    u'name': u'\u2131r\u03b1\u03b7su\u03b1\u2122',
    u'notifications': False,
    u'profile_background_color': u'0D0C0D',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/594780257279823872/MH7drFWW.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/594780257279823872/MH7drFWW.jpg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1692329497/1436147729',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/630527040761032708/I6r8YZSQ_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/630527040761032708/I6r8YZSQ_normal.jpg',
    u'profile_link_color': u'FA743E',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Fraanciscotoma1',
    u'statuses_count': 14072,
    u'time_zone': None,
    u'url': u'https://t.co/282Vizzc59',
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:20 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [49, 55], u'text': u'Messi'}],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472933848739840,
   u'id_str': u'641472933848739840',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'Pero si todos mirando el partido cant\xf3 el gol de #Messi fue hermoso. Nunca me sent\xed m\xe1s parte de una celebraci\xf3n en mi vida que ese gol. \U0001f60d',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat May 23 09:19:34 +0000 2009',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Musician, Online Racecar Driver, man of many talents. sports fan\xe1tico y habladero de pendejadas.  Sonoran Desert AZ, USA.',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'facebook.com/profile.php?id\u2026',
        u'expanded_url': u'http://www.facebook.com/profile.php?id=1783190868',
        u'indices': [0, 22],
        u'url': u'http://t.co/zsv9M3gLBh'}]}},
    u'favourites_count': 3792,
    u'follow_request_sent': False,
    u'followers_count': 155,
    u'following': False,
    u'friends_count': 351,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 42001774,
    u'id_str': u'42001774',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 2,
    u'location': u'Arizona',
    u'name': u'Rubes',
    u'notifications': False,
    u'profile_background_color': u'CF0000',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/187692453/x4d6694b1db0dabf0f1c2f34d62fe5d1.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/187692453/x4d6694b1db0dabf0f1c2f34d62fe5d1.jpg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/42001774/1417262080',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/606682423598784512/_fCfknzq_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/606682423598784512/_fCfknzq_normal.jpg',
    u'profile_link_color': u'FF0000',
    u'profile_sidebar_border_color': u'32FF00',
    u'profile_sidebar_fill_color': u'000000',
    u'profile_text_color': u'FF0202',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Ruben_ZZZ',
    u'statuses_count': 11309,
    u'time_zone': u'Arizona',
    u'url': u'http://t.co/zsv9M3gLBh',
    u'utc_offset': -25200,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 1078831801,
      u'id_str': u'1078831801',
      u'indices': [3, 13],
      u'name': u'Huevo de Kyu \u2605 ',
      u'screen_name': u'ChoVanian'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472933517508608,
   u'id_str': u'641472933517508608',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 2,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:41:19 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 1,
    u'favorited': False,
    u'geo': None,
    u'id': 641471420334239744,
    u'id_str': u'641471420334239744',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 2,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'El chab\xf3n que relataba dijo que el gol de Messi fue similar al de Gotze y mi coraz\xf3n se parti\xf3 en dos.',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Fri Jan 11 07:37:32 +0000 2013',
     u'default_profile': False,
     u'default_profile_image': True,
     u'description': u'chupame el orto',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'ask.fm/huevodekyu',
         u'expanded_url': u'http://ask.fm/huevodekyu',
         u'indices': [0, 22],
         u'url': u'http://t.co/LivsoFIax5'}]}},
     u'favourites_count': 486,
     u'follow_request_sent': False,
     u'followers_count': 1408,
     u'following': False,
     u'friends_count': 986,
     u'geo_enabled': True,
     u'has_extended_profile': True,
     u'id': 1078831801,
     u'id_str': u'1078831801',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 2,
     u'location': u'Argentina ',
     u'name': u'Huevo de Kyu \u2605 ',
     u'notifications': False,
     u'profile_background_color': u'FFFFFF',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/583441741723762688/bsJ792oH.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/583441741723762688/bsJ792oH.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1078831801/1427855069',
     u'profile_image_url': u'http://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png',
     u'profile_image_url_https': u'https://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png',
     u'profile_link_color': u'9266CC',
     u'profile_sidebar_border_color': u'86A4A6',
     u'profile_sidebar_fill_color': u'A0C5C7',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'ChoVanian',
     u'statuses_count': 22383,
     u'time_zone': u'Buenos Aires',
     u'url': u'http://t.co/LivsoFIax5',
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   u'text': u'RT @ChoVanian: El chab\xf3n que relataba dijo que el gol de Messi fue similar al de Gotze y mi coraz\xf3n se parti\xf3 en dos.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon Jul 14 00:43:03 +0000 2014',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Aguante River vieja no me importa nada\u2665 The North Remembers\u2665 Magcon Family - Te shippeo todo\u2665 wigetta is real bitch \u2665 Walker \u2665Smiler\u2665Libra',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 13604,
    u'follow_request_sent': False,
    u'followers_count': 1212,
    u'following': False,
    u'friends_count': 1318,
    u'geo_enabled': True,
    u'has_extended_profile': True,
    u'id': 2708770629,
    u'id_str': u'2708770629',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 2,
    u'location': u'Bah\xeda Blanca, Argentina',
    u'name': u'Coco Lamela \u2665',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/540330081411796992/C21fIiS0.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/540330081411796992/C21fIiS0.jpeg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2708770629/1438838199',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/638222734179332096/IeVAdC-1_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/638222734179332096/IeVAdC-1_normal.jpg',
    u'profile_link_color': u'C7A0E7',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'000000',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'NaniMillonaria',
    u'statuses_count': 11155,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 124617852,
      u'id_str': u'124617852',
      u'indices': [3, 12],
      u'name': u'Iv\xe1n Rabinovich\u200f\ufe0f\u200f\ufe0f',
      u'screen_name': u'Galvaque'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472933316046848,
   u'id_str': u'641472933316046848',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 3,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:41:29 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 4,
    u'favorited': False,
    u'geo': None,
    u'id': 641471462251991040,
    u'id_str': u'641471462251991040',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 3,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'Un americanista como Lay\xfan pidi\xe9ndole la playera a Messi y el argentino le dice con un tajante: \xa1NO!',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Sat Mar 20 00:53:06 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 531,
     u'follow_request_sent': False,
     u'followers_count': 38380,
     u'following': False,
     u'friends_count': 35110,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 124617852,
     u'id_str': u'124617852',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 165,
     u'location': u'M\xe9xico',
     u'name': u'Iv\xe1n Rabinovich\u200f\ufe0f\u200f\ufe0f',
     u'notifications': False,
     u'profile_background_color': u'000000',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/449836926833393664/Flg1IvWR.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/449836926833393664/Flg1IvWR.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/124617852/1438340114',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/640116888400302080/BnNSCEEy_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/640116888400302080/BnNSCEEy_normal.jpg',
     u'profile_link_color': u'0000FF',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'000000',
     u'profile_text_color': u'000000',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Galvaque',
     u'statuses_count': 20481,
     u'time_zone': u'Monterrey',
     u'url': None,
     u'utc_offset': -18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @Galvaque: Un americanista como Lay\xfan pidi\xe9ndole la playera a Messi y el argentino le dice con un tajante: \xa1NO!',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun May 31 17:01:41 +0000 2009',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'\u2022 1989 \u2022 Hogwarts Alumni \u2022 Sportsfan \u2022 Tattoo addict \u2022 Chocoholic \u2022 Zombie Runner',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'Instagram.com/_karit',
        u'expanded_url': u'http://Instagram.com/_karit',
        u'indices': [0, 22],
        u'url': u'http://t.co/jFPT4J2sPR'}]}},
    u'favourites_count': 338,
    u'follow_request_sent': False,
    u'followers_count': 1651,
    u'following': False,
    u'friends_count': 1941,
    u'geo_enabled': False,
    u'has_extended_profile': True,
    u'id': 43716461,
    u'id_str': u'43716461',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 83,
    u'location': u'@ CarpeDiem ',
    u'name': u'kara \u25b3\u20d2\u20d8 \u2728',
    u'notifications': False,
    u'profile_background_color': u'642D8B',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/471830739101569024/udEoxmTZ.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/471830739101569024/udEoxmTZ.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/43716461/1441423024',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/639933495943401472/aSax3iop_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/639933495943401472/aSax3iop_normal.jpg',
    u'profile_link_color': u'94D487',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'7AC3EE',
    u'profile_text_color': u'3D1957',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'karit_niki',
    u'statuses_count': 58102,
    u'time_zone': u'Mexico City',
    u'url': u'http://t.co/jFPT4J2sPR',
    u'utc_offset': -18000,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'bit.ly/1XJiJ0x',
      u'expanded_url': u'http://bit.ly/1XJiJ0x',
      u'indices': [80, 102],
      u'url': u'http://t.co/5wQlBeMNVf'}],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472932905099264,
   u'id_str': u'641472932905099264',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'pt',
   u'metadata': {u'iso_language_code': u'pt', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>',
   u'text': u'Messi brilha no fim, e Argentina arranca empate com o M\xe9xico (09/09/15-01h32):  http://t.co/5wQlBeMNVf',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon Oct 04 18:12:30 +0000 2010',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 402,
    u'follow_request_sent': False,
    u'followers_count': 6810,
    u'following': False,
    u'friends_count': 3266,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 198586694,
    u'id_str': u'198586694',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'pt',
    u'listed_count': 4,
    u'location': u'',
    u'name': u'Apocalipse(#Sou-LAB)',
    u'notifications': False,
    u'profile_background_color': u'FFFFFF',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/157678904/aoaapocalypse027dg.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/157678904/aoaapocalypse027dg.jpg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/198586694/1410041765',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/571261707666722816/w2YRfEP2_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/571261707666722816/w2YRfEP2_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'83ACDB',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Apocalipse81',
    u'statuses_count': 70962,
    u'time_zone': u'Brasilia',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [0, 6], u'text': u'messi'},
     {u'indices': [26, 33], u'text': u'Dallas'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'trendsmap.com/us/dallas',
      u'expanded_url': u'http://trendsmap.com/us/dallas',
      u'indices': [34, 56],
      u'url': u'http://t.co/WwqK3kHNMD'}],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472932674334720,
   u'id_str': u'641472932674334720',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': {u'attributes': {},
    u'bounding_box': {u'coordinates': [[[-96.977527, 32.620678],
       [-96.54598, 32.620678],
       [-96.54598, 33.019039],
       [-96.977527, 33.019039]]],
     u'type': u'Polygon'},
    u'contained_within': [],
    u'country': u'United States',
    u'country_code': u'US',
    u'full_name': u'Dallas, TX',
    u'id': u'18810aa5b43e76c7',
    u'name': u'Dallas',
    u'place_type': u'city',
    u'url': u'https://api.twitter.com/1.1/geo/id/18810aa5b43e76c7.json'},
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://trendsmap.com/" rel="nofollow">Trendsmap Alerting</a>',
   u'text': u'#messi is now trending in #Dallas http://t.co/WwqK3kHNMD',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon Apr 12 23:44:26 +0000 2010',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Real-time Dallas Twitter trends',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'trendsmap.com/local/us/dallas',
        u'expanded_url': u'http://trendsmap.com/local/us/dallas',
        u'indices': [0, 22],
        u'url': u'http://t.co/6ZhubCK9nF'}]}},
    u'favourites_count': 0,
    u'follow_request_sent': False,
    u'followers_count': 2736,
    u'following': False,
    u'friends_count': 918,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 132335310,
    u'id_str': u'132335310',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 107,
    u'location': u'Dallas, USA',
    u'name': u'Trendsmap Dallas',
    u'notifications': False,
    u'profile_background_color': u'022330',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/125777789/TrendsDallas.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/125777789/TrendsDallas.jpg',
    u'profile_background_tile': True,
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/1083357561/TrendsMap-Logo-_Dark___1__normal.png',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/1083357561/TrendsMap-Logo-_Dark___1__normal.png',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'A8C7F7',
    u'profile_sidebar_fill_color': u'C0DFEC',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'TrendsDallas',
    u'statuses_count': 21324,
    u'time_zone': u'Central Time (US & Canada)',
    u'url': u'http://t.co/6ZhubCK9nF',
    u'utc_offset': -18000,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [],
    u'media': [{u'display_url': u'pic.twitter.com/9fevVWyvBS',
      u'expanded_url': u'http://twitter.com/Its_Johnnnnyyyy/status/641447803911213056/video/1',
      u'id': 641447749380997120,
      u'id_str': u'641447749380997120',
      u'indices': [40, 62],
      u'media_url': u'http://pbs.twimg.com/ext_tw_video_thumb/641447749380997120/pu/img/ttsp49wLerlRDj7C.jpg',
      u'media_url_https': u'https://pbs.twimg.com/ext_tw_video_thumb/641447749380997120/pu/img/ttsp49wLerlRDj7C.jpg',
      u'sizes': {u'large': {u'h': 1280, u'resize': u'fit', u'w': 720},
       u'medium': {u'h': 1067, u'resize': u'fit', u'w': 600},
       u'small': {u'h': 604, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641447803911213056,
      u'source_status_id_str': u'641447803911213056',
      u'source_user_id': 1654977182,
      u'source_user_id_str': u'1654977182',
      u'type': u'photo',
      u'url': u'http://t.co/9fevVWyvBS'}],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 2827324314,
      u'id_str': u'2827324314',
      u'indices': [3, 17],
      u'name': u'No Memes F\xfatbol',
      u'screen_name': u'NoMemesFutbol'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472932057862144,
   u'id_str': u'641472932057862144',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'it',
   u'metadata': {u'iso_language_code': u'it', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 44,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 03:50:58 +0000 2015',
    u'entities': {u'hashtags': [],
     u'media': [{u'display_url': u'pic.twitter.com/9fevVWyvBS',
       u'expanded_url': u'http://twitter.com/Its_Johnnnnyyyy/status/641447803911213056/video/1',
       u'id': 641447749380997120,
       u'id_str': u'641447749380997120',
       u'indices': [21, 43],
       u'media_url': u'http://pbs.twimg.com/ext_tw_video_thumb/641447749380997120/pu/img/ttsp49wLerlRDj7C.jpg',
       u'media_url_https': u'https://pbs.twimg.com/ext_tw_video_thumb/641447749380997120/pu/img/ttsp49wLerlRDj7C.jpg',
       u'sizes': {u'large': {u'h': 1280, u'resize': u'fit', u'w': 720},
        u'medium': {u'h': 1067, u'resize': u'fit', u'w': 600},
        u'small': {u'h': 604, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'source_status_id': 641447803911213056,
       u'source_status_id_str': u'641447803911213056',
       u'source_user_id': 1654977182,
       u'source_user_id_str': u'1654977182',
       u'type': u'photo',
       u'url': u'http://t.co/9fevVWyvBS'}],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 40,
    u'favorited': False,
    u'geo': None,
    u'id': 641458749056622592,
    u'id_str': u'641458749056622592',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'it',
    u'metadata': {u'iso_language_code': u'it', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 44,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'La Magia de Messi... http://t.co/9fevVWyvBS',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Tue Sep 23 03:53:01 +0000 2014',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Humor y sarcasmo del f\xfatbol mundial | S\xedgueme en Instagram: @NoMemesFutbol | Contacto y Negocios: nomemesfutbol@hotmail.com',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'facebook.com/pages/No-Memes\u2026',
         u'expanded_url': u'https://www.facebook.com/pages/No-Memes-F%C3%BAtbol/1427688404206527?ref=hl',
         u'indices': [0, 23],
         u'url': u'https://t.co/yfM9av7Usm'}]}},
     u'favourites_count': 5845,
     u'follow_request_sent': False,
     u'followers_count': 66175,
     u'following': False,
     u'friends_count': 3103,
     u'geo_enabled': False,
     u'has_extended_profile': True,
     u'id': 2827324314,
     u'id_str': u'2827324314',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 80,
     u'location': u'',
     u'name': u'No Memes F\xfatbol',
     u'notifications': False,
     u'profile_background_color': u'131516',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/557055234489327616/IHr6FX_B.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/557055234489327616/IHr6FX_B.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2827324314/1439077666',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/638876043575558144/7QWjSMbk_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/638876043575558144/7QWjSMbk_normal.jpg',
     u'profile_link_color': u'009999',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'NoMemesFutbol',
     u'statuses_count': 9050,
     u'time_zone': u'Mazatlan',
     u'url': u'https://t.co/yfM9av7Usm',
     u'utc_offset': -21600,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @NoMemesFutbol: La Magia de Messi... http://t.co/9fevVWyvBS',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Feb 06 04:47:49 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Pallet Town',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1197,
    u'follow_request_sent': False,
    u'followers_count': 780,
    u'following': False,
    u'friends_count': 721,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 248058235,
    u'id_str': u'248058235',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 3,
    u'location': u'',
    u'name': u'\u2020 Irvin',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/705030426/e9c33c5684682beee5127573e7d801d2.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/705030426/e9c33c5684682beee5127573e7d801d2.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/248058235/1392078233',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/567178426050965504/1-ZoAOB-_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/567178426050965504/1-ZoAOB-_normal.jpeg',
    u'profile_link_color': u'B30000',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'242424',
    u'profile_text_color': u'BDBDBD',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'toxicdelusions',
    u'statuses_count': 54044,
    u'time_zone': u'Eastern Time (US & Canada)',
    u'url': None,
    u'utc_offset': -14400,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 42598744,
      u'id_str': u'42598744',
      u'indices': [0, 13],
      u'name': u'Lucas',
      u'screen_name': u'littlefaceok'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472932020101122,
   u'id_str': u'641472932020101122',
   u'in_reply_to_screen_name': u'littlefaceok',
   u'in_reply_to_status_id': 641471883209232384,
   u'in_reply_to_status_id_str': u'641471883209232384',
   u'in_reply_to_user_id': 42598744,
   u'in_reply_to_user_id_str': u'42598744',
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'@littlefaceok La Selecci\xf3n: \nRomero\nZabaleta Garay Masche Rojo\nBiglia Krane Tucu\nMessi Di Maria \nAg\xfcero',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Sep 17 23:52:04 +0000 2010',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Periodista. Estudiante de Comunicaci\xf3n en la UNLaM. De River Plate y Beatles. Desubicado por convicci\xf3n.',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 518,
    u'follow_request_sent': False,
    u'followers_count': 272,
    u'following': False,
    u'friends_count': 822,
    u'geo_enabled': True,
    u'has_extended_profile': True,
    u'id': 192019305,
    u'id_str': u'192019305',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 3,
    u'location': u'',
    u'name': u'Iv\xe1n Hojman',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/150358721/The_Beatles.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/150358721/The_Beatles.jpg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/192019305/1430488047',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/632187751392280576/7FH2O4lO_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/632187751392280576/7FH2O4lO_normal.jpg',
    u'profile_link_color': u'3B94D9',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'ivanhojman',
    u'statuses_count': 2409,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 1666002457,
      u'id_str': u'1666002457',
      u'indices': [3, 17],
      u'name': u'Alejandro Zendejas',
      u'screen_name': u'AlexZendejas8'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472931864969216,
   u'id_str': u'641472931864969216',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 1,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:39:47 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 4,
    u'favorited': False,
    u'geo': None,
    u'id': 641471035917758464,
    u'id_str': u'641471035917758464',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'en',
    u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 1,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Messi would score as soon as I leave the game smh.. \U0001f61e',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Mon Aug 12 20:35:19 +0000 2013',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'Professional soccer player for @FCDallas. Sophhhh :) \n\nJust a kid chasing my dreams.',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 5556,
     u'follow_request_sent': False,
     u'followers_count': 1321,
     u'following': False,
     u'friends_count': 476,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 1666002457,
     u'id_str': u'1666002457',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 11,
     u'location': u'Frisco, Texas ',
     u'name': u'Alejandro Zendejas',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1666002457/1435210315',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/594361889158602752/AEkoVkkQ_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/594361889158602752/AEkoVkkQ_normal.jpg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'AlexZendejas8',
     u'statuses_count': 2752,
     u'time_zone': None,
     u'url': None,
     u'utc_offset': None,
     u'verified': True}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @AlexZendejas8: Messi would score as soon as I leave the game smh.. \U0001f61e',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Apr 04 03:01:02 +0000 2015',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'\u26bd\ufe0f\u26bd\ufe0f\u26bd\ufe0f',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 577,
    u'follow_request_sent': False,
    u'followers_count': 183,
    u'following': False,
    u'friends_count': 619,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 3132229091,
    u'id_str': u'3132229091',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 1,
    u'location': u'',
    u'name': u'Vincenttt',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/3132229091/1438303001',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/623341233671245824/-mHacqul_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/623341233671245824/-mHacqul_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'LaleauVince18',
    u'statuses_count': 3404,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [15, 30],
      u'text': u'VamosArgentina'}],
    u'media': [{u'display_url': u'pic.twitter.com/SRjC51xzac',
      u'expanded_url': u'http://twitter.com/Argentina/status/641469007682519040/photo/1',
      u'id': 641468622649577472,
      u'id_str': u'641468622649577472',
      u'indices': [139, 140],
      u'media_url': u'http://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
      u'sizes': {u'large': {u'h': 570, u'resize': u'fit', u'w': 570},
       u'medium': {u'h': 570, u'resize': u'fit', u'w': 570},
       u'small': {u'h': 340, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641469007682519040,
      u'source_status_id_str': u'641469007682519040',
      u'source_user_id': 2495199115,
      u'source_user_id_str': u'2495199115',
      u'type': u'photo',
      u'url': u'http://t.co/SRjC51xzac'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'goo.gl/bzChAJ',
      u'expanded_url': u'http://goo.gl/bzChAJ',
      u'indices': [109, 131],
      u'url': u'http://t.co/LmWU4B29ZZ'}],
    u'user_mentions': [{u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [3, 13],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472931546144768,
   u'id_str': u'641472931546144768',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 661,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:31:44 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [0, 15],
       u'text': u'VamosArgentina'}],
     u'media': [{u'display_url': u'pic.twitter.com/SRjC51xzac',
       u'expanded_url': u'http://twitter.com/Argentina/status/641469007682519040/photo/1',
       u'id': 641468622649577472,
       u'id_str': u'641468622649577472',
       u'indices': [117, 139],
       u'media_url': u'http://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
       u'sizes': {u'large': {u'h': 570, u'resize': u'fit', u'w': 570},
        u'medium': {u'h': 570, u'resize': u'fit', u'w': 570},
        u'small': {u'h': 340, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/SRjC51xzac'}],
     u'symbols': [],
     u'urls': [{u'display_url': u'goo.gl/bzChAJ',
       u'expanded_url': u'http://goo.gl/bzChAJ',
       u'indices': [94, 116],
       u'url': u'http://t.co/LmWU4B29ZZ'}],
     u'user_mentions': []},
    u'favorite_count': 513,
    u'favorited': False,
    u'geo': None,
    u'id': 641469007682519040,
    u'id_str': u'641469007682519040',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 661,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'#VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://t.co/SRjC51xzac',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed May 14 22:28:45 +0000 2014',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'Twitter oficial de la Selecci\xf3n Argentina. Fan Page: http://t.co/ztPTvzLubx\u2026',
     u'entities': {u'description': {u'urls': [{u'display_url': u'facebook.com/AFASeleccionAr',
         u'expanded_url': u'http://facebook.com/AFASeleccionAr',
         u'indices': [53, 75],
         u'url': u'http://t.co/ztPTvzLubx'}]},
      u'url': {u'urls': [{u'display_url': u'afa.com.ar',
         u'expanded_url': u'http://afa.com.ar',
         u'indices': [0, 22],
         u'url': u'http://t.co/si6hz2DjJT'}]}},
     u'favourites_count': 123,
     u'follow_request_sent': False,
     u'followers_count': 1648755,
     u'following': False,
     u'friends_count': 49,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 2495199115,
     u'id_str': u'2495199115',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 2215,
     u'location': u'Argentina',
     u'name': u'Selecci\xf3n Argentina',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2495199115/1441578232',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Argentina',
     u'statuses_count': 19954,
     u'time_zone': u'Buenos Aires',
     u'url': u'http://t.co/si6hz2DjJT',
     u'utc_offset': -10800,
     u'verified': True}},
   u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   u'text': u'RT @Argentina: #VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun May 31 07:34:43 +0000 2015',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'Soy hincha fanatica de Gimnasia',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 6002,
    u'follow_request_sent': False,
    u'followers_count': 180,
    u'following': False,
    u'friends_count': 152,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 3304415261,
    u'id_str': u'3304415261',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 1,
    u'location': u'La Plata, Argentina',
    u'name': u'Juli Gelp',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/3304415261/1440569724',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/639333310443954176/tUYdn1hr_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/639333310443954176/tUYdn1hr_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'LaTriperaJuli22',
    u'statuses_count': 6337,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [15, 30],
      u'text': u'VamosArgentina'}],
    u'media': [{u'display_url': u'pic.twitter.com/SRjC51xzac',
      u'expanded_url': u'http://twitter.com/Argentina/status/641469007682519040/photo/1',
      u'id': 641468622649577472,
      u'id_str': u'641468622649577472',
      u'indices': [139, 140],
      u'media_url': u'http://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
      u'sizes': {u'large': {u'h': 570, u'resize': u'fit', u'w': 570},
       u'medium': {u'h': 570, u'resize': u'fit', u'w': 570},
       u'small': {u'h': 340, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641469007682519040,
      u'source_status_id_str': u'641469007682519040',
      u'source_user_id': 2495199115,
      u'source_user_id_str': u'2495199115',
      u'type': u'photo',
      u'url': u'http://t.co/SRjC51xzac'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'goo.gl/bzChAJ',
      u'expanded_url': u'http://goo.gl/bzChAJ',
      u'indices': [109, 131],
      u'url': u'http://t.co/LmWU4B29ZZ'}],
    u'user_mentions': [{u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [3, 13],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472931403399168,
   u'id_str': u'641472931403399168',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 661,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:31:44 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [0, 15],
       u'text': u'VamosArgentina'}],
     u'media': [{u'display_url': u'pic.twitter.com/SRjC51xzac',
       u'expanded_url': u'http://twitter.com/Argentina/status/641469007682519040/photo/1',
       u'id': 641468622649577472,
       u'id_str': u'641468622649577472',
       u'indices': [117, 139],
       u'media_url': u'http://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb0UEuWUAAwI0b.jpg',
       u'sizes': {u'large': {u'h': 570, u'resize': u'fit', u'w': 570},
        u'medium': {u'h': 570, u'resize': u'fit', u'w': 570},
        u'small': {u'h': 340, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/SRjC51xzac'}],
     u'symbols': [],
     u'urls': [{u'display_url': u'goo.gl/bzChAJ',
       u'expanded_url': u'http://goo.gl/bzChAJ',
       u'indices': [94, 116],
       u'url': u'http://t.co/LmWU4B29ZZ'}],
     u'user_mentions': []},
    u'favorite_count': 513,
    u'favorited': False,
    u'geo': None,
    u'id': 641469007682519040,
    u'id_str': u'641469007682519040',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 661,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'#VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://t.co/SRjC51xzac',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed May 14 22:28:45 +0000 2014',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'Twitter oficial de la Selecci\xf3n Argentina. Fan Page: http://t.co/ztPTvzLubx\u2026',
     u'entities': {u'description': {u'urls': [{u'display_url': u'facebook.com/AFASeleccionAr',
         u'expanded_url': u'http://facebook.com/AFASeleccionAr',
         u'indices': [53, 75],
         u'url': u'http://t.co/ztPTvzLubx'}]},
      u'url': {u'urls': [{u'display_url': u'afa.com.ar',
         u'expanded_url': u'http://afa.com.ar',
         u'indices': [0, 22],
         u'url': u'http://t.co/si6hz2DjJT'}]}},
     u'favourites_count': 123,
     u'follow_request_sent': False,
     u'followers_count': 1648755,
     u'following': False,
     u'friends_count': 49,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 2495199115,
     u'id_str': u'2495199115',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 2215,
     u'location': u'Argentina',
     u'name': u'Selecci\xf3n Argentina',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2495199115/1441578232',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Argentina',
     u'statuses_count': 19954,
     u'time_zone': u'Buenos Aires',
     u'url': u'http://t.co/si6hz2DjJT',
     u'utc_offset': -10800,
     u'verified': True}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @Argentina: #VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat May 02 19:16:18 +0000 2009',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Le pido a las palabras lo que el bal\xf3n me neg\xf3. Canterana de @futboltotal y fb de @mediotiempo; equipo actual @record_mexico. Cruz Azul, el amor de mi vida!',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'record.com.mx',
        u'expanded_url': u'http://www.record.com.mx',
        u'indices': [0, 22],
        u'url': u'http://t.co/f1QCkGwE4G'}]}},
    u'favourites_count': 692,
    u'follow_request_sent': False,
    u'followers_count': 1594,
    u'following': False,
    u'friends_count': 1039,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 37261293,
    u'id_str': u'37261293',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 20,
    u'location': u'Estadio Azul',
    u'name': u'Karina Gim\xe9nez',
    u'notifications': False,
    u'profile_background_color': u'140AA8',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000091451630/d60eafb0563308af8212f39da8710f49.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000091451630/d60eafb0563308af8212f39da8710f49.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/37261293/1440700312',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/634133722120327172/zYuneJti_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/634133722120327172/zYuneJti_normal.jpg',
    u'profile_link_color': u'666B7A',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'0D20A1',
    u'profile_text_color': u'F70808',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Kari_Azul',
    u'statuses_count': 9468,
    u'time_zone': u'Mexico City',
    u'url': u'http://t.co/f1QCkGwE4G',
    u'utc_offset': -18000,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [],
    u'media': [{u'display_url': u'pic.twitter.com/aDW36sjAb5',
      u'expanded_url': u'http://twitter.com/Messiologia/status/641472388081819649/photo/1',
      u'id': 641472298764095488,
      u'id_str': u'641472298764095488',
      u'indices': [139, 140],
      u'media_url': u'http://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
      u'sizes': {u'large': {u'h': 573, u'resize': u'fit', u'w': 940},
       u'medium': {u'h': 365, u'resize': u'fit', u'w': 600},
       u'small': {u'h': 207, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641472388081819649,
      u'source_status_id_str': u'641472388081819649',
      u'source_user_id': 889476378,
      u'source_user_id_str': u'889476378',
      u'type': u'photo',
      u'url': u'http://t.co/aDW36sjAb5'}],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 889476378,
      u'id_str': u'889476378',
      u'indices': [3, 15],
      u'name': u'Messiolog\xeda',
      u'screen_name': u'Messiologia'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472931294539776,
   u'id_str': u'641472931294539776',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 73,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:45:09 +0000 2015',
    u'entities': {u'hashtags': [],
     u'media': [{u'display_url': u'pic.twitter.com/aDW36sjAb5',
       u'expanded_url': u'http://twitter.com/Messiologia/status/641472388081819649/photo/1',
       u'id': 641472298764095488,
       u'id_str': u'641472298764095488',
       u'indices': [118, 140],
       u'media_url': u'http://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
       u'sizes': {u'large': {u'h': 573, u'resize': u'fit', u'w': 940},
        u'medium': {u'h': 365, u'resize': u'fit', u'w': 600},
        u'small': {u'h': 207, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/aDW36sjAb5'}],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 55,
    u'favorited': False,
    u'geo': None,
    u'id': 641472388081819649,
    u'id_str': u'641472388081819649',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 73,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http://t.co/aDW36sjAb5',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Thu Oct 18 18:33:04 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Haci\xe9ndole el aguante al mejor del mundo.',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'messiologiatw.blogspot.com',
         u'expanded_url': u'http://messiologiatw.blogspot.com',
         u'indices': [0, 22],
         u'url': u'http://t.co/xpFeAGqm6c'}]}},
     u'favourites_count': 27019,
     u'follow_request_sent': False,
     u'followers_count': 25794,
     u'following': False,
     u'friends_count': 98,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 889476378,
     u'id_str': u'889476378',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 91,
     u'location': u'messiologiatw@gmail.com',
     u'name': u'Messiolog\xeda',
     u'notifications': False,
     u'profile_background_color': u'08BAF0',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/468969003604385792/6ak3eAUZ.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/468969003604385792/6ak3eAUZ.png',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/889476378/1418970869',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/545407312559484928/EtbfheBb_normal.png',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/545407312559484928/EtbfheBb_normal.png',
     u'profile_link_color': u'08BAF0',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Messiologia',
     u'statuses_count': 30448,
     u'time_zone': u'Caracas',
     u'url': u'http://t.co/xpFeAGqm6c',
     u'utc_offset': -16200,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @Messiologia: Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Nov 08 14:25:00 +0000 2014',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'Hincha Cule y Bostero.',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 46,
    u'follow_request_sent': False,
    u'followers_count': 68,
    u'following': False,
    u'friends_count': 306,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 2867381553,
    u'id_str': u'2867381553',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'Cule y Bostero',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2867381553/1415457191',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/580583494230900736/eR_U6AMR_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/580583494230900736/eR_U6AMR_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'futbolfcybj',
    u'statuses_count': 1841,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472930849931264,
   u'id_str': u'641472930849931264',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'Vos me est\xe1s cargando q ahora todos saltan con que messi es el mejor y cuando argentina perdi\xf3 las dos finales lo odiaban al pobre tipo',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Sep 07 05:08:02 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Lo imposible solo tarda un poco mas.13 oto\xf1os.',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1475,
    u'follow_request_sent': False,
    u'followers_count': 368,
    u'following': False,
    u'friends_count': 693,
    u'geo_enabled': True,
    u'has_extended_profile': True,
    u'id': 1740947005,
    u'id_str': u'1740947005',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'Cipolletti',
    u'name': u'maru',
    u'notifications': False,
    u'profile_background_color': u'DD2E44',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/601824419728662529/SWAAjOKD.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/601824419728662529/SWAAjOKD.jpg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1740947005/1438646060',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/639240806134624257/VYlCPw3A_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/639240806134624257/VYlCPw3A_normal.jpg',
    u'profile_link_color': u'F5ABB5',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'marusepulvedaok',
    u'statuses_count': 7876,
    u'time_zone': u'Mid-Atlantic',
    u'url': None,
    u'utc_offset': -7200,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [],
    u'media': [{u'display_url': u'pic.twitter.com/B2QcBnXfdb',
      u'expanded_url': u'http://twitter.com/ShiWantsTheC/status/641469491227029504/photo/1',
      u'id': 641469480875462656,
      u'id_str': u'641469480875462656',
      u'indices': [66, 88],
      u'media_url': u'http://pbs.twimg.com/media/COb1GB3WEAA6u2R.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb1GB3WEAA6u2R.jpg',
      u'sizes': {u'large': {u'h': 1017, u'resize': u'fit', u'w': 1024},
       u'medium': {u'h': 595, u'resize': u'fit', u'w': 600},
       u'small': {u'h': 337, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641469491227029504,
      u'source_status_id_str': u'641469491227029504',
      u'source_user_id': 2464894184,
      u'source_user_id_str': u'2464894184',
      u'type': u'photo',
      u'url': u'http://t.co/B2QcBnXfdb'}],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 2464894184,
      u'id_str': u'2464894184',
      u'indices': [3, 16],
      u'name': u'She Wants Da Chorizo',
      u'screen_name': u'ShiWantsTheC'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472929956503552,
   u'id_str': u'641472929956503552',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 42,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:33:39 +0000 2015',
    u'entities': {u'hashtags': [],
     u'media': [{u'display_url': u'pic.twitter.com/B2QcBnXfdb',
       u'expanded_url': u'http://twitter.com/ShiWantsTheC/status/641469491227029504/photo/1',
       u'id': 641469480875462656,
       u'id_str': u'641469480875462656',
       u'indices': [48, 70],
       u'media_url': u'http://pbs.twimg.com/media/COb1GB3WEAA6u2R.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb1GB3WEAA6u2R.jpg',
       u'sizes': {u'large': {u'h': 1017, u'resize': u'fit', u'w': 1024},
        u'medium': {u'h': 595, u'resize': u'fit', u'w': 600},
        u'small': {u'h': 337, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/B2QcBnXfdb'}],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 43,
    u'favorited': False,
    u'geo': None,
    u'id': 641469491227029504,
    u'id_str': u'641469491227029504',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'en',
    u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 42,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Mexico 2 - 2 Argentina\n\nMan Of The Match: Messi http://t.co/B2QcBnXfdb',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Sat Apr 26 17:11:37 +0000 2014',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u"I'm too Mexican for America, but too American for Mexico. Dropping my new Corrido Mixtape Volume 2 on ya guys pretty soon..",
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'twitter.com/shiwantsthec/s\u2026',
         u'expanded_url': u'https://twitter.com/shiwantsthec/status/625492629850034176',
         u'indices': [0, 23],
         u'url': u'https://t.co/iOudPXUatH'}]}},
     u'favourites_count': 18818,
     u'follow_request_sent': False,
     u'followers_count': 23540,
     u'following': False,
     u'friends_count': 24643,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 2464894184,
     u'id_str': u'2464894184',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 25,
     u'location': u'Snapchat: ChiWantsTheC ',
     u'name': u'She Wants Da Chorizo',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2464894184/1398532929',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/638165310265143298/A41prQS-_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/638165310265143298/A41prQS-_normal.jpg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'ShiWantsTheC',
     u'statuses_count': 4262,
     u'time_zone': u'Pacific Time (US & Canada)',
     u'url': u'https://t.co/iOudPXUatH',
     u'utc_offset': -25200,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @ShiWantsTheC: Mexico 2 - 2 Argentina\n\nMan Of The Match: Messi http://t.co/B2QcBnXfdb',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Jan 22 21:02:23 +0000 2012',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'17, Senior, Guatemalan/Brazilian',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 17790,
    u'follow_request_sent': False,
    u'followers_count': 832,
    u'following': False,
    u'friends_count': 459,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 471427790,
    u'id_str': u'471427790',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 1,
    u'location': u'Cranston, RI\u26bd\ufe0f\u26bd\ufe0f\u26bd\ufe0f',
    u'name': u'eli',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/434495545441148928/HxOOlwen.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/434495545441148928/HxOOlwen.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/471427790/1441498444',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/641413962563743744/J0MZVt0v_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/641413962563743744/J0MZVt0v_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'ElisaidaReyes',
    u'statuses_count': 29388,
    u'time_zone': u'Eastern Time (US & Canada)',
    u'url': None,
    u'utc_offset': -14400,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472929780400128,
   u'id_str': u'641472929780400128',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'fr',
   u'metadata': {u'iso_language_code': u'fr', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'Messi \U0001f60d\u2764',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Wed Dec 14 19:59:51 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Comprend\xed que no pudo pasarme algo mejor: Abel Pintos.Salta la Banca \u2764\n   \n               Amante de la M\xfasica',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 7547,
    u'follow_request_sent': False,
    u'followers_count': 712,
    u'following': False,
    u'friends_count': 741,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 436961221,
    u'id_str': u'436961221',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 2,
    u'location': u'Tucum\xe1n-Argentina',
    u'name': u'Ailen',
    u'notifications': False,
    u'profile_background_color': u'642D8B',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/464910482365612032/wz-CsDls.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/464910482365612032/wz-CsDls.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/436961221/1429666852',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/641460592822366208/gavFo6qG_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/641460592822366208/gavFo6qG_normal.jpg',
    u'profile_link_color': u'FF00E1',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'7AC3EE',
    u'profile_text_color': u'3D1957',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'AilenCordobaAP',
    u'statuses_count': 54716,
    u'time_zone': u'Santiago',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:19 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 208866546,
      u'id_str': u'208866546',
      u'indices': [3, 12],
      u'name': u'Fanny Rivera',
      u'screen_name': u'fannyrvr'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472929738285056,
   u'id_str': u'641472929738285056',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 5,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:27:04 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 6,
    u'favorited': False,
    u'geo': None,
    u'id': 641467835277971456,
    u'id_str': u'641467835277971456',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 5,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Ya se merec\xeda ese gol Messi\U0001f60d',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Thu Oct 28 02:37:13 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Con Dios todas las cosas son posibles\u2764\ufe0f. Si NO te gusta el futbol mejor no me sigas. Cul\xe9, Rossonera y Celeste por siempre.\u26bd\ufe0f #F1.',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'vavel.com/fannyrvr/',
         u'expanded_url': u'http://www.vavel.com/fannyrvr/',
         u'indices': [0, 22],
         u'url': u'http://t.co/0PhYlTITtJ'}]}},
     u'favourites_count': 1057,
     u'follow_request_sent': False,
     u'followers_count': 4971,
     u'following': False,
     u'friends_count': 1084,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 208866546,
     u'id_str': u'208866546',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 27,
     u'location': u'',
     u'name': u'Fanny Rivera',
     u'notifications': False,
     u'profile_background_color': u'131516',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/538981689/tumblr_m2duta55Ms1qc7tono1_500_large.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/538981689/tumblr_m2duta55Ms1qc7tono1_500_large.png',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/208866546/1436819160',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/624042364680564737/4nAQN5Sc_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/624042364680564737/4nAQN5Sc_normal.jpg',
     u'profile_link_color': u'DD2E44',
     u'profile_sidebar_border_color': u'EEEEEE',
     u'profile_sidebar_fill_color': u'EFEFEF',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'fannyrvr',
     u'statuses_count': 20552,
     u'time_zone': u'Mountain Time (US & Canada)',
     u'url': u'http://t.co/0PhYlTITtJ',
     u'utc_offset': -21600,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @fannyrvr: Ya se merec\xeda ese gol Messi\U0001f60d',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon Apr 25 02:06:37 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'|Futbolista desde 1997| Bar\xe7a y Cruz Azul\u26bd\ufe0f',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 5133,
    u'follow_request_sent': False,
    u'followers_count': 554,
    u'following': False,
    u'friends_count': 284,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 287470298,
    u'id_str': u'287470298',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 1,
    u'location': u'Coldplayer/Claxonera ',
    u'name': u'PS. \u2661',
    u'notifications': False,
    u'profile_background_color': u'DBE9ED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/533017225397940224/2dZrYq6B.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/533017225397940224/2dZrYq6B.jpeg',
    u'profile_background_tile': True,
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/640844131070177280/J-1GX6uc_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/640844131070177280/J-1GX6uc_normal.jpg',
    u'profile_link_color': u'9266CC',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'E3E2DE',
    u'profile_text_color': u'634047',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'MeDicenPJ',
    u'statuses_count': 50252,
    u'time_zone': u'Central Time (US & Canada)',
    u'url': None,
    u'utc_offset': -18000,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 1,
   u'favorited': False,
   u'geo': None,
   u'id': 641472929172090880,
   u'id_str': u'641472929172090880',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u"Y'ALL CAN'T EVEN IMAGINE HOW LOUD I SCREAMED WHEN MESSI SCORED HOLY FUCCKKKK",
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Jul 09 02:29:00 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Fangirl \u2728Forever in love with the beautiful Game \u26bd\ufe0f.',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 21654,
    u'follow_request_sent': False,
    u'followers_count': 691,
    u'following': False,
    u'friends_count': 677,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 332009078,
    u'id_str': u'332009078',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 4,
    u'location': u'Texas ',
    u'name': u'captain',
    u'notifications': False,
    u'profile_background_color': u'8502D1',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme18/bg.gif',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme18/bg.gif',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/332009078/1441522602',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/640612981739401216/pItfVCoL_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/640612981739401216/pItfVCoL_normal.jpg',
    u'profile_link_color': u'0072EB',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'F6F6F6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'SaraZarate8',
    u'statuses_count': 36051,
    u'time_zone': u'Alaska',
    u'url': None,
    u'utc_offset': -28800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 1004829786,
      u'id_str': u'1004829786',
      u'indices': [3, 17],
      u'name': u'Invictos',
      u'screen_name': u'SomosInvictos'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472928924717057,
   u'id_str': u'641472928924717057',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 157,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:26:22 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 147,
    u'favorited': False,
    u'geo': None,
    u'id': 641467657615622144,
    u'id_str': u'641467657615622144',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 157,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'\xa1GOOOOOOOOOOOOOOOOOOOOOOOOOL de Argentina! Lo hizo Lionel Andr\xe9s Messi. Lo empataron los de Gerardo Martino. M\xe9xico 2-2 Argentina.',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Tue Dec 11 20:35:22 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Invictos es una revista digital relacionada con el medio futbol\xedstico nacional e internacional.   https://t.co/8fKccy8U5m',
     u'entities': {u'description': {u'urls': [{u'display_url': u'facebook.com/somosinvictos',
         u'expanded_url': u'https://www.facebook.com/somosinvictos',
         u'indices': [98, 121],
         u'url': u'https://t.co/8fKccy8U5m'}]},
      u'url': {u'urls': [{u'display_url': u'somosinvictos.com',
         u'expanded_url': u'http://somosinvictos.com/',
         u'indices': [0, 22],
         u'url': u'http://t.co/rD5qikkDIk'}]}},
     u'favourites_count': 37100,
     u'follow_request_sent': False,
     u'followers_count': 152155,
     u'following': False,
     u'friends_count': 693,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 1004829786,
     u'id_str': u'1004829786',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 533,
     u'location': u'social@somosinvictos.com',
     u'name': u'Invictos',
     u'notifications': False,
     u'profile_background_color': u'FFFFFF',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000066481811/a38fe4e435bd0fd7c338570a84495689.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000066481811/a38fe4e435bd0fd7c338570a84495689.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1004829786/1437229702',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/480161498510016514/CY5hPUog_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/480161498510016514/CY5hPUog_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'SomosInvictos',
     u'statuses_count': 71223,
     u'time_zone': u'Central Time (US & Canada)',
     u'url': u'http://t.co/rD5qikkDIk',
     u'utc_offset': -18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @SomosInvictos: \xa1GOOOOOOOOOOOOOOOOOOOOOOOOOL de Argentina! Lo hizo Lionel Andr\xe9s Messi. Lo empataron los de Gerardo Martino. M\xe9xico 2-2 \u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Dec 21 22:54:51 +0000 2012',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'\u2606D\xeda x D\xeda!!! MaM\xe1 d EA\u2661!!! Y al Mal Tiempo Buena:)\u263aM\xe9xico/USA\u26bd\u2606',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 37023,
    u'follow_request_sent': False,
    u'followers_count': 324,
    u'following': False,
    u'friends_count': 651,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 1027305072,
    u'id_str': u'1027305072',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 7,
    u'location': u'',
    u'name': u'SandraLuz Alarc\xf3n O.',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1027305072/1441688561',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/490605505338159105/40TFSvz3_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/490605505338159105/40TFSvz3_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'slao67',
    u'statuses_count': 40972,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'media': [{u'display_url': u'pic.twitter.com/3wJCBYOpSf',
      u'expanded_url': u'http://twitter.com/CoquitaDeVidrio/status/641470493673979904/photo/1',
      u'id': 641470486552010752,
      u'id_str': u'641470486552010752',
      u'indices': [66, 88],
      u'media_url': u'http://pbs.twimg.com/media/COb2AkTUYAAurJZ.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb2AkTUYAAurJZ.jpg',
      u'sizes': {u'large': {u'h': 1024, u'resize': u'fit', u'w': 826},
       u'medium': {u'h': 743, u'resize': u'fit', u'w': 600},
       u'small': {u'h': 421, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641470493673979904,
      u'source_status_id_str': u'641470493673979904',
      u'source_user_id': 202383872,
      u'source_user_id_str': u'202383872',
      u'type': u'photo',
      u'url': u'http://t.co/3wJCBYOpSf'}],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 202383872,
      u'id_str': u'202383872',
      u'indices': [3, 19],
      u'name': u'La Mujer.',
      u'screen_name': u'CoquitaDeVidrio'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472928907812864,
   u'id_str': u'641472928907812864',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 2,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:37:38 +0000 2015',
    u'entities': {u'hashtags': [],
     u'media': [{u'display_url': u'pic.twitter.com/3wJCBYOpSf',
       u'expanded_url': u'http://twitter.com/CoquitaDeVidrio/status/641470493673979904/photo/1',
       u'id': 641470486552010752,
       u'id_str': u'641470486552010752',
       u'indices': [45, 67],
       u'media_url': u'http://pbs.twimg.com/media/COb2AkTUYAAurJZ.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb2AkTUYAAurJZ.jpg',
       u'sizes': {u'large': {u'h': 1024, u'resize': u'fit', u'w': 826},
        u'medium': {u'h': 743, u'resize': u'fit', u'w': 600},
        u'small': {u'h': 421, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/3wJCBYOpSf'}],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 5,
    u'favorited': False,
    u'geo': None,
    u'id': 641470493673979904,
    u'id_str': u'641470493673979904',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 2,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    u'text': u'\u2014El Piojo Herrera cuando Messi meti\xf3 el gol. http://t.co/3wJCBYOpSf',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed Oct 13 22:53:42 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'[Aramis]',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 33842,
     u'follow_request_sent': False,
     u'followers_count': 1217,
     u'following': False,
     u'friends_count': 128,
     u'geo_enabled': False,
     u'has_extended_profile': True,
     u'id': 202383872,
     u'id_str': u'202383872',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 21,
     u'location': u'Noreste Caliente',
     u'name': u'La Mujer.',
     u'notifications': False,
     u'profile_background_color': u'FFFCFE',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/716540573/c4a2cdfdd602c57c07f14dee8765dafb.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/716540573/c4a2cdfdd602c57c07f14dee8765dafb.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/202383872/1423985603',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/591130064483319808/giqyfeo3_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/591130064483319808/giqyfeo3_normal.jpg',
     u'profile_link_color': u'AB0D42',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'E3D5AA',
     u'profile_text_color': u'EB6E34',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'CoquitaDeVidrio',
     u'statuses_count': 12445,
     u'time_zone': u'Central Time (US & Canada)',
     u'url': None,
     u'utc_offset': -18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @CoquitaDeVidrio: \u2014El Piojo Herrera cuando Messi meti\xf3 el gol. http://t.co/3wJCBYOpSf',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Tue Mar 30 21:38:38 +0000 2010',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Mexican. Soccer lover. Just me.',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 2187,
    u'follow_request_sent': False,
    u'followers_count': 885,
    u'following': False,
    u'friends_count': 1281,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 128015707,
    u'id_str': u'128015707',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 7,
    u'location': u'Pachuca',
    u'name': u'Silvia Hoyos',
    u'notifications': False,
    u'profile_background_color': u'6E6C6B',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/812574412/7320ca4ae109bf54969b2d224282a008.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/812574412/7320ca4ae109bf54969b2d224282a008.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/128015707/1420309594',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/615355911146594304/UtDYzKeZ_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/615355911146594304/UtDYzKeZ_normal.jpg',
    u'profile_link_color': u'11066E',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'F1CCFF',
    u'profile_text_color': u'0C1294',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'_silviahl',
    u'statuses_count': 29145,
    u'time_zone': u'Mountain Time (US & Canada)',
    u'url': None,
    u'utc_offset': -21600,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 1115610128,
      u'id_str': u'1115610128',
      u'indices': [3, 13],
      u'name': u'magaaaaaailll',
      u'screen_name': u'Messiboy5'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472928643612672,
   u'id_str': u'641472928643612672',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 3,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:28:01 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 3,
    u'favorited': False,
    u'geo': None,
    u'id': 641468076362346496,
    u'id_str': u'641468076362346496',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'en',
    u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 3,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Messi is just a special player that can change the game just like that',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Thu Jan 24 00:22:31 +0000 2013',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'my life be like \u26bd\ufe0f',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 3539,
     u'follow_request_sent': False,
     u'followers_count': 492,
     u'following': False,
     u'friends_count': 376,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 1115610128,
     u'id_str': u'1115610128',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 0,
     u'location': u'',
     u'name': u'magaaaaaailll',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1115610128/1435769572',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/616620773608783872/xN78wvJE_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/616620773608783872/xN78wvJE_normal.jpg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Messiboy5',
     u'statuses_count': 25151,
     u'time_zone': u'Eastern Time (US & Canada)',
     u'url': None,
     u'utc_offset': -14400,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @Messiboy5: Messi is just a special player that can change the game just like that',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Sep 22 01:38:08 +0000 2012',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'Strive and prosper RIP a$ap yams, Stay humble $',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1664,
    u'follow_request_sent': False,
    u'followers_count': 489,
    u'following': False,
    u'friends_count': 400,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 838876316,
    u'id_str': u'838876316',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'Pho-king Leo ',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/838876316/1426364370',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/612329579554803712/74f5QyjX_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/612329579554803712/74f5QyjX_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'leogiron6',
    u'statuses_count': 8290,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
      u'expanded_url': u'http://snpy.tv/1ivZeZj',
      u'indices': [90, 112],
      u'url': u'http://t.co/tc7sN7X48b'}],
    u'user_mentions': [{u'id': 2548990280,
      u'id_str': u'2548990280',
      u'indices': [3, 14],
      u'name': u'FootyVibez',
      u'screen_name': u'FootyVibez'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472927951511552,
   u'id_str': u'641472927951511552',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 38,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:40:55 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
       u'expanded_url': u'http://snpy.tv/1ivZeZj',
       u'indices': [74, 96],
       u'url': u'http://t.co/tc7sN7X48b'}],
     u'user_mentions': []},
    u'favorite_count': 29,
    u'favorited': False,
    u'geo': None,
    u'id': 641471320694239233,
    u'id_str': u'641471320694239233',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'en',
    u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 38,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Messi doesnt realize he scored the same goal that lost him the World Cup\U0001f480\nhttp://t.co/tc7sN7X48b',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Fri Jun 06 01:23:13 +0000 2014',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Your first touch can either make you or break you \u26bd\ufe0f',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 0,
     u'follow_request_sent': False,
     u'followers_count': 5603,
     u'following': False,
     u'friends_count': 9,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 2548990280,
     u'id_str': u'2548990280',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 3,
     u'location': u'',
     u'name': u'FootyVibez',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/585286360090578944/iiNWnG6Y.jpg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/585286360090578944/iiNWnG6Y.jpg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2548990280/1414287850',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/512356669389414400/msmEfDwO_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/512356669389414400/msmEfDwO_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'FootyVibez',
     u'statuses_count': 382,
     u'time_zone': u'Central Time (US & Canada)',
     u'url': None,
     u'utc_offset': -18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @FootyVibez: Messi doesnt realize he scored the same goal that lost him the World Cup\U0001f480\nhttp://t.co/tc7sN7X48b',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Tue Dec 06 22:16:51 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'God, Family, School & sometimes @IB_Russian\u2764\ufe0f\u2764 |\ufe0fThe Univerisity of Kansas.',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 21513,
    u'follow_request_sent': False,
    u'followers_count': 1148,
    u'following': False,
    u'friends_count': 486,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 430217098,
    u'id_str': u'430217098',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 10,
    u'location': u'Lawrence, Kansas',
    u'name': u'Vernon L. Woodard\u2122',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/826390662/04498c9d8484d881069dfb84d1dde1e0.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/826390662/04498c9d8484d881069dfb84d1dde1e0.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/430217098/1437981838',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/617697009596698624/QZKbcaBx_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/617697009596698624/QZKbcaBx_normal.jpg',
    u'profile_link_color': u'FF0000',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'vwayne3',
    u'statuses_count': 70307,
    u'time_zone': u'Eastern Time (US & Canada)',
    u'url': None,
    u'utc_offset': -14400,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [86, 92], u'text': u'Messi'}],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 152796126,
      u'id_str': u'152796126',
      u'indices': [3, 16],
      u'name': u'Ta\u2020iana |izarazo',
      u'screen_name': u'TatianaLizar'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472927884574720,
   u'id_str': u'641472927884574720',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 8,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:41:44 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [68, 74], u'text': u'Messi'}],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 10,
    u'favorited': False,
    u'geo': None,
    u'id': 641471528387911680,
    u'id_str': u'641471528387911680',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': {u'attributes': {},
     u'bounding_box': {u'coordinates': [[[-74.483288999243, 3.71743200175304],
        [-74.0040529979154, 3.71743200175304],
        [-74.0040529979154, 4.80713500387127],
        [-74.483288999243, 4.80713500387127]]],
      u'type': u'Polygon'},
     u'contained_within': [],
     u'country': u'Colombia',
     u'country_code': u'CO',
     u'full_name': u'Bogot\xe1, Colombia',
     u'id': u'0161be1b3f98d6c3',
     u'name': u'Bogot\xe1',
     u'place_type': u'city',
     u'url': u'https://api.twitter.com/1.1/geo/id/0161be1b3f98d6c3.json'},
    u'retweet_count': 8,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Gracias Dios por haberme mandado a este mundo en la misma \xe9poca que #Messi \U0001f499\U0001f60d',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Sun Jun 06 22:26:52 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Administradora de profesi\xf3n, Comunicadora Social en Formaci\xf3n. Amando cada d\xeda m\xe1s el f\xfatbol! Colaboradora en @FutbolTopClubs, @FutbolModerno_ & @Escarlatas1927',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'Instagram.com/TatianaLizarazo',
         u'expanded_url': u'http://Instagram.com/TatianaLizarazo',
         u'indices': [0, 22],
         u'url': u'http://t.co/cW49hhTR5q'}]}},
     u'favourites_count': 1496,
     u'follow_request_sent': False,
     u'followers_count': 1362,
     u'following': False,
     u'friends_count': 792,
     u'geo_enabled': True,
     u'has_extended_profile': True,
     u'id': 152796126,
     u'id_str': u'152796126',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 11,
     u'location': u'Colombia',
     u'name': u'Ta\u2020iana |izarazo',
     u'notifications': False,
     u'profile_background_color': u'ACDED6',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/590526525876805632/GTKvqFWE.jpg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/590526525876805632/GTKvqFWE.jpg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/152796126/1434939941',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/636684685557506048/G7TMO974_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/636684685557506048/G7TMO974_normal.jpg',
     u'profile_link_color': u'F5ABB5',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'E5507E',
     u'profile_text_color': u'362720',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'TatianaLizar',
     u'statuses_count': 11839,
     u'time_zone': u'Bogota',
     u'url': u'http://t.co/cW49hhTR5q',
     u'utc_offset': -18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @TatianaLizar: Gracias Dios por haberme mandado a este mundo en la misma \xe9poca que #Messi \U0001f499\U0001f60d',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Jul 15 21:23:23 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Vale la pena esperar, por lo que vale la pena tener =)',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1604,
    u'follow_request_sent': False,
    u'followers_count': 110,
    u'following': False,
    u'friends_count': 164,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 336174534,
    u'id_str': u'336174534',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'Buenos Aires, Argentina',
    u'name': u'Camila Funes ',
    u'notifications': False,
    u'profile_background_color': u'709397',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/602980638237425665/lABvS6Hi.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/602980638237425665/lABvS6Hi.jpg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/336174534/1420686014',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/553019718596956160/YfvyI-HH_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/553019718596956160/YfvyI-HH_normal.jpeg',
    u'profile_link_color': u'FF3300',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'CamilaFunes2',
    u'statuses_count': 2359,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 164501179,
      u'id_str': u'164501179',
      u'indices': [3, 15],
      u'name': u'Mar\xeda Enema',
      u'screen_name': u'maria_enema'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472927402057728,
   u'id_str': u'641472927402057728',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 652,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:27:13 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 314,
    u'favorited': False,
    u'geo': None,
    u'id': 641467872104030208,
    u'id_str': u'641467872104030208',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 652,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'Los mexicanos no contaban con su astucia y no hablo del Chapulin Colorado hablo de Messi',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Fri Jul 09 01:24:18 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'me impresiona mi fama',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 463,
     u'follow_request_sent': False,
     u'followers_count': 394146,
     u'following': False,
     u'friends_count': 116,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 164501179,
     u'id_str': u'164501179',
     u'is_translation_enabled': True,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 305,
     u'location': u'Del pueblo',
     u'name': u'Mar\xeda Enema',
     u'notifications': False,
     u'profile_background_color': u'000000',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/560999884195520513/wQj-PmaW.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/560999884195520513/wQj-PmaW.jpeg',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/164501179/1419493403',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/561002238995202050/PPNWNQuq_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/561002238995202050/PPNWNQuq_normal.jpeg',
     u'profile_link_color': u'000000',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': False,
     u'protected': False,
     u'screen_name': u'maria_enema',
     u'statuses_count': 3940,
     u'time_zone': u'Buenos Aires',
     u'url': None,
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @maria_enema: Los mexicanos no contaban con su astucia y no hablo del Chapulin Colorado hablo de Messi',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon Apr 25 02:06:37 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'|Futbolista desde 1997| Bar\xe7a y Cruz Azul\u26bd\ufe0f',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 5133,
    u'follow_request_sent': False,
    u'followers_count': 554,
    u'following': False,
    u'friends_count': 284,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 287470298,
    u'id_str': u'287470298',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 1,
    u'location': u'Coldplayer/Claxonera ',
    u'name': u'PS. \u2661',
    u'notifications': False,
    u'profile_background_color': u'DBE9ED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/533017225397940224/2dZrYq6B.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/533017225397940224/2dZrYq6B.jpeg',
    u'profile_background_tile': True,
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/640844131070177280/J-1GX6uc_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/640844131070177280/J-1GX6uc_normal.jpg',
    u'profile_link_color': u'9266CC',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'E3E2DE',
    u'profile_text_color': u'634047',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'MeDicenPJ',
    u'statuses_count': 50252,
    u'time_zone': u'Central Time (US & Canada)',
    u'url': None,
    u'utc_offset': -18000,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 327004611,
      u'id_str': u'327004611',
      u'indices': [3, 11],
      u'name': u'El Profe',
      u'screen_name': u'Profe_k'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472927360090112,
   u'id_str': u'641472927360090112',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 30,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:33:06 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 18,
    u'favorited': False,
    u'geo': None,
    u'id': 641469353096015872,
    u'id_str': u'641469353096015872',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 30,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Gran verdad dicha x Senosiain. Quieren imponer la dupla Messi-T\xe9vez. Pero la verdadera sociedad est\xe1 en Messi-Ag\xfcero.',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Thu Jun 30 20:59:17 +0000 2011',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Vice Presidente 1\xb0 del Dpto. T. Legal del C.A. River Plate. Abogado. Docente. Labruna y Alonso, despu\xe9s el resto. @AhoraRiver',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'facebook.com/GenRiverplaten\u2026',
         u'expanded_url': u'http://www.facebook.com/GenRiverplatense',
         u'indices': [0, 22],
         u'url': u'http://t.co/bR6g2RnuHO'}]}},
     u'favourites_count': 308,
     u'follow_request_sent': False,
     u'followers_count': 10232,
     u'following': False,
     u'friends_count': 927,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 327004611,
     u'id_str': u'327004611',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 57,
     u'location': u'Siempre en la San Mart\xedn. ',
     u'name': u'El Profe',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/352380933/001.JPG',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/352380933/001.JPG',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/327004611/1350111303',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/443794649728024576/ywUcKmkK_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/443794649728024576/ywUcKmkK_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Profe_k',
     u'statuses_count': 17248,
     u'time_zone': u'Buenos Aires',
     u'url': u'http://t.co/bR6g2RnuHO',
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @Profe_k: Gran verdad dicha x Senosiain. Quieren imponer la dupla Messi-T\xe9vez. Pero la verdadera sociedad est\xe1 en Messi-Ag\xfcero.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu May 21 00:01:23 +0000 2009',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 140,
    u'follow_request_sent': False,
    u'followers_count': 429,
    u'following': False,
    u'friends_count': 1633,
    u'geo_enabled': True,
    u'has_extended_profile': True,
    u'id': 41484655,
    u'id_str': u'41484655',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 6,
    u'location': u'Chamical, La Rioja, Argentina',
    u'name': u'Lino A. Pereyra',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/134895168/Ortega_wallpaper02.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/134895168/Ortega_wallpaper02.jpg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/41484655/1401163290',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/471138725863641088/94gPRoOa_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/471138725863641088/94gPRoOa_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'linopereyra',
    u'statuses_count': 3989,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 1926431491,
      u'id_str': u'1926431491',
      u'indices': [3, 16],
      u'name': u'Pr\xe9stico',
      u'screen_name': u'prestico_ddd'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472926852730881,
   u'id_str': u'641472926852730881',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 71,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:32:38 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 27,
    u'favorited': False,
    u'geo': None,
    u'id': 641469236737474560,
    u'id_str': u'641469236737474560',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': {u'attributes': {},
     u'bounding_box': {u'coordinates': [[[-58.5317922, -34.674453],
        [-58.353494, -34.674453],
        [-58.353494, -34.534177],
        [-58.5317922, -34.534177]]],
      u'type': u'Polygon'},
     u'contained_within': [],
     u'country': u'Argentina',
     u'country_code': u'AR',
     u'full_name': u'Ciudad Aut\xf3noma de Buenos Aires, Argentina',
     u'id': u'018f1cde6bad9747',
     u'name': u'Ciudad Aut\xf3noma de Buenos Aires',
     u'place_type': u'city',
     u'url': u'https://api.twitter.com/1.1/geo/id/018f1cde6bad9747.json'},
    u'retweet_count': 71,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'LAS CARAS DE LOS MEXICANOS COMO DICIENDO QUE PASO ... JAJAJAJA\nLEO MESSI PASO PAPA',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed Oct 02 10:06:41 +0000 2013',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Comediante. Parodia. Humor del bueno. @ddd_ok #Prestico',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'facebook.com/leandrolangerok',
         u'expanded_url': u'https://www.facebook.com/leandrolangerok',
         u'indices': [0, 23],
         u'url': u'https://t.co/9lC0rOCEXL'}]}},
     u'favourites_count': 684,
     u'follow_request_sent': False,
     u'followers_count': 77337,
     u'following': False,
     u'friends_count': 81346,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 1926431491,
     u'id_str': u'1926431491',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 46,
     u'location': u'Ciudad Aut\xf3noma de Buenos Aire',
     u'name': u'Pr\xe9stico',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/494061595220127745/3p5-NhKT.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/494061595220127745/3p5-NhKT.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1926431491/1440475733',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/634895439075012608/MOSHUvzL_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/634895439075012608/MOSHUvzL_normal.jpg',
     u'profile_link_color': u'4A913C',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'prestico_ddd',
     u'statuses_count': 41048,
     u'time_zone': u'Buenos Aires',
     u'url': u'https://t.co/9lC0rOCEXL',
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @prestico_ddd: LAS CARAS DE LOS MEXICANOS COMO DICIENDO QUE PASO ... JAJAJAJA\nLEO MESSI PASO PAPA',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Nov 08 19:30:59 +0000 2014',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'#DELROJO',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 428,
    u'follow_request_sent': False,
    u'followers_count': 68,
    u'following': False,
    u'friends_count': 136,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 2867791023,
    u'id_str': u'2867791023',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'San Martin',
    u'name': u'Facundun\u2663',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2867791023/1415656270',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/608399986649366530/_Fp4OXX-_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/608399986649366530/_Fp4OXX-_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'eee_facu',
    u'statuses_count': 1080,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
      u'expanded_url': u'http://snpy.tv/1ivZeZj',
      u'indices': [44, 66],
      u'url': u'http://t.co/u3AIzt9nKq'}],
    u'user_mentions': [{u'id': 985172054,
      u'id_str': u'985172054',
      u'indices': [3, 18],
      u'name': u'GeniusFootball',
      u'screen_name': u'GeniusFootball'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472926735138816,
   u'id_str': u'641472926735138816',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 1292,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:30:45 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'snpy.tv/1ivZeZj',
       u'expanded_url': u'http://snpy.tv/1ivZeZj',
       u'indices': [24, 46],
       u'url': u'http://t.co/u3AIzt9nKq'}],
     u'user_mentions': []},
    u'favorite_count': 785,
    u'favorited': False,
    u'geo': None,
    u'id': 641468761917161472,
    u'id_str': u'641468761917161472',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'en',
    u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 1292,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Messi just did a Gotze  http://t.co/u3AIzt9nKq',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Sun Dec 02 18:47:35 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Bringing you the best stats, facts, pictures and videos! Business: higeniusfootball@gmail.com',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'purelyfootball.com',
         u'expanded_url': u'http://purelyfootball.com',
         u'indices': [0, 22],
         u'url': u'http://t.co/AL2B81nZD0'}]}},
     u'favourites_count': 639,
     u'follow_request_sent': False,
     u'followers_count': 758503,
     u'following': False,
     u'friends_count': 486,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 985172054,
     u'id_str': u'985172054',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 2402,
     u'location': u'Global',
     u'name': u'GeniusFootball',
     u'notifications': False,
     u'profile_background_color': u'131516',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000167677834/sRUYanwM.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000167677834/sRUYanwM.jpeg',
     u'profile_background_tile': True,
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/422821516019920896/qFEPUboh_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/422821516019920896/qFEPUboh_normal.jpeg',
     u'profile_link_color': u'009999',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'EFEFEF',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'GeniusFootball',
     u'statuses_count': 33426,
     u'time_zone': u'London',
     u'url': u'http://t.co/AL2B81nZD0',
     u'utc_offset': 3600,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @GeniusFootball: Messi just did a Gotze  http://t.co/u3AIzt9nKq',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Jan 10 23:48:05 +0000 2014',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'premature millionair',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 4869,
    u'follow_request_sent': False,
    u'followers_count': 484,
    u'following': False,
    u'friends_count': 378,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 2285802986,
    u'id_str': u'2285802986',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 1,
    u'location': u'',
    u'name': u'ERICK',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2285802986/1440563266',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/600197880935092225/TVMjcumI_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/600197880935092225/TVMjcumI_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'eddyy___',
    u'statuses_count': 10720,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472926177492992,
   u'id_str': u'641472926177492992',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   u'text': u'Yo sigo esperando el d\xeda en que messi nos sea sincero y nos diga de que galaxia vino, es que, no, no puede ser real',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Mar 23 05:18:08 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Miembro de una secta de adoradores de @justinbieber, me sigui\xf3 el  21/04/15. @JulianSerrano primer \xeddolo, e incomparable viejo del vino, lo conoci el 28/03/14.',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 3231,
    u'follow_request_sent': False,
    u'followers_count': 1431,
    u'following': False,
    u'friends_count': 1195,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 1290488653,
    u'id_str': u'1290488653',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 2,
    u'location': u'La rioja, Argentina',
    u'name': u'ram4',
    u'notifications': False,
    u'profile_background_color': u'131516',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/608424549072408576/RC-3gNzY.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/608424549072408576/RC-3gNzY.jpg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1290488653/1440113132',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/641387166904524801/dOphJbuM_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/641387166904524801/dOphJbuM_normal.jpg',
    u'profile_link_color': u'9266CC',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'ramadeun4rb0l',
    u'statuses_count': 27063,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [72, 78], u'text': u'Genio'}],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 200543710,
      u'id_str': u'200543710',
      u'indices': [3, 15],
      u'name': u'FANY - lyl',
      u'screen_name': u'fanylopez24'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472926013722624,
   u'id_str': u'641472926013722624',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 2,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:35:40 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [55, 61], u'text': u'Genio'}],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 3,
    u'favorited': False,
    u'geo': None,
    u'id': 641470000155373568,
    u'id_str': u'641470000155373568',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 2,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Messi apareci\xf3 una vez. Pero con que calidad apareci\xf3. #Genio',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Sat Oct 09 15:40:20 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Ingeniera Civil en proceso..',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'fb.com/fanylopez24',
         u'expanded_url': u'http://fb.com/fanylopez24',
         u'indices': [0, 22],
         u'url': u'http://t.co/NOO5mvKZPj'}]}},
     u'favourites_count': 6676,
     u'follow_request_sent': False,
     u'followers_count': 734,
     u'following': False,
     u'friends_count': 747,
     u'geo_enabled': True,
     u'has_extended_profile': True,
     u'id': 200543710,
     u'id_str': u'200543710',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 3,
     u'location': u' - Tigres - BENTON\u2764\ufe0f',
     u'name': u'FANY - lyl',
     u'notifications': False,
     u'profile_background_color': u'633777',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/530873929343053826/FZq-Kdau.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/530873929343053826/FZq-Kdau.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/200543710/1426524541',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/633432329222946816/JHI8wUIa_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/633432329222946816/JHI8wUIa_normal.jpg',
     u'profile_link_color': u'000000',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'FB8EC6',
     u'profile_text_color': u'403747',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'fanylopez24',
     u'statuses_count': 16664,
     u'time_zone': u'Central Time (US & Canada)',
     u'url': u'http://t.co/NOO5mvKZPj',
     u'utc_offset': -18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @fanylopez24: Messi apareci\xf3 una vez. Pero con que calidad apareci\xf3. #Genio',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Jan 04 17:40:19 +0000 2015',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'-',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1984,
    u'follow_request_sent': False,
    u'followers_count': 139,
    u'following': False,
    u'friends_count': 206,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 2960572793,
    u'id_str': u'2960572793',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es-MX',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'Diana',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2960572793/1439361511',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/638034956917145600/NZMXeT5Y_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/638034956917145600/NZMXeT5Y_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Diana30504176',
    u'statuses_count': 1729,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'media': [{u'display_url': u'pic.twitter.com/qgTWVhjXKu',
      u'expanded_url': u'http://twitter.com/elvascheidtvyi/status/641472925896474624/photo/1',
      u'id': 641472925841891328,
      u'id_str': u'641472925841891328',
      u'indices': [111, 133],
      u'media_url': u'http://pbs.twimg.com/media/COb4OjXWIAAMsYY.png',
      u'media_url_https': u'https://pbs.twimg.com/media/COb4OjXWIAAMsYY.png',
      u'sizes': {u'large': {u'h': 363, u'resize': u'fit', u'w': 638},
       u'medium': {u'h': 341, u'resize': u'fit', u'w': 600},
       u'small': {u'h': 193, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'type': u'photo',
      u'url': u'http://t.co/qgTWVhjXKu'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'flogvip.net/teenwolf/DSV',
      u'expanded_url': u'http://flogvip.net/teenwolf/DSV',
      u'indices': [14, 36],
      u'url': u'http://t.co/nPwGjfKZTV'},
     {u'display_url': u'flogvip.net/teenwolf/FDDSF\u2026',
      u'expanded_url': u'http://flogvip.net/teenwolf/FDDSFSD',
      u'indices': [37, 59],
      u'url': u'http://t.co/QTDa6Ob1wk'},
     {u'display_url': u'bit.ly/TeenWolfNew',
      u'expanded_url': u'http://bit.ly/TeenWolfNew',
      u'indices': [88, 110],
      u'url': u'http://t.co/io2TZ0eAGI'}],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472925896474624,
   u'id_str': u'641472925896474624',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'in',
   u'metadata': {u'iso_language_code': u'in', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://ifttt.com" rel="nofollow">IFTTT</a>',
   u'text': u'spacewalkwr : http://t.co/nPwGjfKZTV\nhttp://t.co/QTDa6Ob1wk\nMessi\nNeymar\nGago\nFranco M\u2026 http://t.co/io2TZ0eAGI http://t.co/qgTWVhjXKu',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Tue Aug 04 15:16:33 +0000 2015',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Lab assistant',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 0,
    u'follow_request_sent': False,
    u'followers_count': 70,
    u'following': False,
    u'friends_count': 40,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 3306088284,
    u'id_str': u'3306088284',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 28,
    u'location': u'Arizona, USA',
    u'name': u'Elvis Keily',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/3306088284/1438701711',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/628585692084375552/lgL-NSqD_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/628585692084375552/lgL-NSqD_normal.jpg',
    u'profile_link_color': u'DD2E44',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'000000',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': False,
    u'protected': False,
    u'screen_name': u'elvascheidtvyi',
    u'statuses_count': 88169,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 175466877,
      u'id_str': u'175466877',
      u'indices': [3, 14],
      u'name': u'Aitana Campos',
      u'screen_name': u'aiticampos'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472925686734848,
   u'id_str': u'641472925686734848',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'it',
   u'metadata': {u'iso_language_code': u'it', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 1,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:26:45 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 1,
    u'favorited': False,
    u'geo': None,
    u'id': 641467754764222464,
    u'id_str': u'641467754764222464',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'it',
    u'metadata': {u'iso_language_code': u'it', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 1,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    u'text': u'\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f Messi Messi Messi Messi \U0001f64c',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Fri Aug 06 17:52:51 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Cierro puertas, abro el alma. Que entre el sol. Los Redondos. Salta La Banca. River Plate. \u2b55',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 141,
     u'follow_request_sent': False,
     u'followers_count': 1089,
     u'following': False,
     u'friends_count': 673,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 175466877,
     u'id_str': u'175466877',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 1,
     u'location': u'La Plata - Bol\xedvar',
     u'name': u'Aitana Campos',
     u'notifications': False,
     u'profile_background_color': u'022330',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/468196548522680321/2YvMSxXH.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/468196548522680321/2YvMSxXH.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/175466877/1441254693',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/638898282006233089/MTPSW2IP_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/638898282006233089/MTPSW2IP_normal.jpg',
     u'profile_link_color': u'89C9FA',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'C0DFEC',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'aiticampos',
     u'statuses_count': 28835,
     u'time_zone': None,
     u'url': None,
     u'utc_offset': None,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @aiticampos: \U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f Messi Messi Messi Messi \U0001f64c',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Mar 17 14:22:25 +0000 2012',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Retocandolo, pero siempre juntos.',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 293,
    u'follow_request_sent': False,
    u'followers_count': 306,
    u'following': False,
    u'friends_count': 235,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 527501686,
    u'id_str': u'527501686',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 1,
    u'location': u'',
    u'name': u'Agust\xedn Arregui ',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/605894971434991619/AEV_HV2L.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/605894971434991619/AEV_HV2L.jpg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/527501686/1434548627',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/634129348010876929/YWuByhkY_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/634129348010876929/YWuByhkY_normal.jpg',
    u'profile_link_color': u'000000',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'C0DFEC',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'AgustinArregui1',
    u'statuses_count': 4081,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:18 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 910930208,
      u'id_str': u'910930208',
      u'indices': [0, 11],
      u'name': u'Tom\xe1s',
      u'screen_name': u'TomyGarcia'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472925305020416,
   u'id_str': u'641472925305020416',
   u'in_reply_to_screen_name': u'TomyGarcia',
   u'in_reply_to_status_id': 641472681934737408,
   u'in_reply_to_status_id_str': u'641472681934737408',
   u'in_reply_to_user_id': 910930208,
   u'in_reply_to_user_id_str': u'910930208',
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'@TomyGarcia obvio, asistencia incre\xedble, pero sigo teniendo a messi en el pedestal',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Oct 21 19:13:45 +0000 2012',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'futura Licenciada en Comercio Internacional \u2022 instagram: aguslaporta \u2022 amplio gusto musical \u2022 amor a los animales \u2022 18 a\xf1os \u2022 militante de la Juventud Radical',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'facebook.com/agus.laporta',
        u'expanded_url': u'https://www.facebook.com/agus.laporta',
        u'indices': [0, 23],
        u'url': u'https://t.co/wrPLoxxg2e'}]}},
    u'favourites_count': 3247,
    u'follow_request_sent': False,
    u'followers_count': 507,
    u'following': False,
    u'friends_count': 343,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 895980613,
    u'id_str': u'895980613',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 9,
    u'location': u'Mendoza Argentina',
    u'name': u'Agus La Porta',
    u'notifications': False,
    u'profile_background_color': u'ACDED6',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme18/bg.gif',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme18/bg.gif',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/895980613/1438097984',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/632943481745473536/KEuwKPOt_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/632943481745473536/KEuwKPOt_normal.jpg',
    u'profile_link_color': u'9266CC',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'AgusLaPorta',
    u'statuses_count': 39979,
    u'time_zone': u'Brasilia',
    u'url': u'https://t.co/wrPLoxxg2e',
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'media': [{u'display_url': u'pic.twitter.com/aDW36sjAb5',
      u'expanded_url': u'http://twitter.com/Messiologia/status/641472388081819649/photo/1',
      u'id': 641472298764095488,
      u'id_str': u'641472298764095488',
      u'indices': [139, 140],
      u'media_url': u'http://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
      u'sizes': {u'large': {u'h': 573, u'resize': u'fit', u'w': 940},
       u'medium': {u'h': 365, u'resize': u'fit', u'w': 600},
       u'small': {u'h': 207, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641472388081819649,
      u'source_status_id_str': u'641472388081819649',
      u'source_user_id': 889476378,
      u'source_user_id_str': u'889476378',
      u'type': u'photo',
      u'url': u'http://t.co/aDW36sjAb5'}],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 889476378,
      u'id_str': u'889476378',
      u'indices': [3, 15],
      u'name': u'Messiolog\xeda',
      u'screen_name': u'Messiologia'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472925095337984,
   u'id_str': u'641472925095337984',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 73,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:45:09 +0000 2015',
    u'entities': {u'hashtags': [],
     u'media': [{u'display_url': u'pic.twitter.com/aDW36sjAb5',
       u'expanded_url': u'http://twitter.com/Messiologia/status/641472388081819649/photo/1',
       u'id': 641472298764095488,
       u'id_str': u'641472298764095488',
       u'indices': [118, 140],
       u'media_url': u'http://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
       u'sizes': {u'large': {u'h': 573, u'resize': u'fit', u'w': 940},
        u'medium': {u'h': 365, u'resize': u'fit', u'w': 600},
        u'small': {u'h': 207, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/aDW36sjAb5'}],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 55,
    u'favorited': False,
    u'geo': None,
    u'id': 641472388081819649,
    u'id_str': u'641472388081819649',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 73,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http://t.co/aDW36sjAb5',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Thu Oct 18 18:33:04 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Haci\xe9ndole el aguante al mejor del mundo.',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'messiologiatw.blogspot.com',
         u'expanded_url': u'http://messiologiatw.blogspot.com',
         u'indices': [0, 22],
         u'url': u'http://t.co/xpFeAGqm6c'}]}},
     u'favourites_count': 27019,
     u'follow_request_sent': False,
     u'followers_count': 25794,
     u'following': False,
     u'friends_count': 98,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 889476378,
     u'id_str': u'889476378',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 91,
     u'location': u'messiologiatw@gmail.com',
     u'name': u'Messiolog\xeda',
     u'notifications': False,
     u'profile_background_color': u'08BAF0',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/468969003604385792/6ak3eAUZ.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/468969003604385792/6ak3eAUZ.png',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/889476378/1418970869',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/545407312559484928/EtbfheBb_normal.png',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/545407312559484928/EtbfheBb_normal.png',
     u'profile_link_color': u'08BAF0',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Messiologia',
     u'statuses_count': 30448,
     u'time_zone': u'Caracas',
     u'url': u'http://t.co/xpFeAGqm6c',
     u'utc_offset': -16200,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @Messiologia: Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Oct 29 15:03:56 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Hincha del club atl\xe9tico Rosario Central. Snapchat ig: alebeldano',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1481,
    u'follow_request_sent': False,
    u'followers_count': 1067,
    u'following': False,
    u'friends_count': 298,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 400770013,
    u'id_str': u'400770013',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 2,
    u'location': u'Rosario, Argentina.',
    u'name': u'AM ',
    u'notifications': False,
    u'profile_background_color': u'FFFFFF',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/455862180890423296/6iuQ2jFR.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/455862180890423296/6iuQ2jFR.jpeg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/400770013/1439924899',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/637029013240827905/UWarvssA_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/637029013240827905/UWarvssA_normal.jpg',
    u'profile_link_color': u'000000',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'252429',
    u'profile_text_color': u'666666',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'AlejoMartin1_',
    u'statuses_count': 10667,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'vine.co/v/etDmxnualMj',
      u'expanded_url': u'https://vine.co/v/etDmxnualMj',
      u'indices': [71, 94],
      u'url': u'https://t.co/d8rhxbiCIH'}],
    u'user_mentions': [{u'id': 1004829786,
      u'id_str': u'1004829786',
      u'indices': [3, 17],
      u'name': u'Invictos',
      u'screen_name': u'SomosInvictos'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472924835188736,
   u'id_str': u'641472924835188736',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 260,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:29:19 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'vine.co/v/etDmxnualMj',
       u'expanded_url': u'https://vine.co/v/etDmxnualMj',
       u'indices': [52, 75],
       u'url': u'https://t.co/d8rhxbiCIH'}],
     u'user_mentions': []},
    u'favorite_count': 199,
    u'favorited': False,
    u'geo': None,
    u'id': 641468400414277633,
    u'id_str': u'641468400414277633',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 260,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'Lo de Messi es buen\xedsimo, pero el pase de El Kun... https://t.co/d8rhxbiCIH',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Tue Dec 11 20:35:22 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Invictos es una revista digital relacionada con el medio futbol\xedstico nacional e internacional.   https://t.co/8fKccy8U5m',
     u'entities': {u'description': {u'urls': [{u'display_url': u'facebook.com/somosinvictos',
         u'expanded_url': u'https://www.facebook.com/somosinvictos',
         u'indices': [98, 121],
         u'url': u'https://t.co/8fKccy8U5m'}]},
      u'url': {u'urls': [{u'display_url': u'somosinvictos.com',
         u'expanded_url': u'http://somosinvictos.com/',
         u'indices': [0, 22],
         u'url': u'http://t.co/rD5qikkDIk'}]}},
     u'favourites_count': 37100,
     u'follow_request_sent': False,
     u'followers_count': 152155,
     u'following': False,
     u'friends_count': 693,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 1004829786,
     u'id_str': u'1004829786',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 533,
     u'location': u'social@somosinvictos.com',
     u'name': u'Invictos',
     u'notifications': False,
     u'profile_background_color': u'FFFFFF',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000066481811/a38fe4e435bd0fd7c338570a84495689.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000066481811/a38fe4e435bd0fd7c338570a84495689.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1004829786/1437229702',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/480161498510016514/CY5hPUog_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/480161498510016514/CY5hPUog_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'SomosInvictos',
     u'statuses_count': 71223,
     u'time_zone': u'Central Time (US & Canada)',
     u'url': u'http://t.co/rD5qikkDIk',
     u'utc_offset': -18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @SomosInvictos: Lo de Messi es buen\xedsimo, pero el pase de El Kun... https://t.co/d8rhxbiCIH',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Wed Jan 23 00:43:47 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'\u26bd',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'facebook.com/adrian.corrale\u2026',
        u'expanded_url': u'http://www.facebook.com/adrian.corrales.50',
        u'indices': [0, 22],
        u'url': u'http://t.co/4gkdG2SsNU'}]}},
    u'favourites_count': 927,
    u'follow_request_sent': False,
    u'followers_count': 60,
    u'following': False,
    u'friends_count': 161,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 1113034112,
    u'id_str': u'1113034112',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'Sonora, M\xe9xico.',
    u'name': u'Mago R.',
    u'notifications': False,
    u'profile_background_color': u'131516',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/770906982/90b0f9db45dce0b3b9f1a03df518ca3b.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/770906982/90b0f9db45dce0b3b9f1a03df518ca3b.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1113034112/1438416933',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/579996971789778946/bl42kbDJ_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/579996971789778946/bl42kbDJ_normal.jpg',
    u'profile_link_color': u'009999',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'DavidRiveraC01',
    u'statuses_count': 752,
    u'time_zone': None,
    u'url': u'http://t.co/4gkdG2SsNU',
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [41, 49], u'text': u'MEXvARG'}],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 2745079721,
      u'id_str': u'2745079721',
      u'indices': [3, 14],
      u'name': u'\xa7eth Cuenca \u26bd\ufe0f',
      u'screen_name': u'Cuenca__11'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472924747063296,
   u'id_str': u'641472924747063296',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 3,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:27:43 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [25, 33], u'text': u'MEXvARG'}],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 0,
    u'favorited': False,
    u'geo': None,
    u'id': 641467997652017152,
    u'id_str': u'641467997652017152',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'en',
    u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 3,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'It had to be messi \U0001f605 2-2 #MEXvARG',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Sun Aug 17 05:47:14 +0000 2014',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'Footballer at Lmhs // Think positively',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 3545,
     u'follow_request_sent': False,
     u'followers_count': 262,
     u'following': False,
     u'friends_count': 308,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 2745079721,
     u'id_str': u'2745079721',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 0,
     u'location': u'',
     u'name': u'\xa7eth Cuenca \u26bd\ufe0f',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2745079721/1440588016',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/623733278315417601/Af0DRKYf_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/623733278315417601/Af0DRKYf_normal.jpg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Cuenca__11',
     u'statuses_count': 3145,
     u'time_zone': None,
     u'url': None,
     u'utc_offset': None,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'RT @Cuenca__11: It had to be messi \U0001f605 2-2 #MEXvARG',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Feb 09 06:06:34 +0000 2014',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'LMHS // Fullerton Rangers g00 premier',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'instagram.com/izzybelle.6',
        u'expanded_url': u'http://instagram.com/izzybelle.6',
        u'indices': [0, 22],
        u'url': u'http://t.co/Ou23PKQQ5k'}]}},
    u'favourites_count': 431,
    u'follow_request_sent': False,
    u'followers_count': 166,
    u'following': False,
    u'friends_count': 210,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 2334627264,
    u'id_str': u'2334627264',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 0,
    u'location': u'Whittier, CA',
    u'name': u'Isabelle Gollette',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2334627264/1441682901',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/638019035762855936/vc5_0LdN_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/638019035762855936/vc5_0LdN_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'_izzy6_',
    u'statuses_count': 2665,
    u'time_zone': None,
    u'url': u'http://t.co/Ou23PKQQ5k',
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472924638056448,
   u'id_str': u'641472924638056448',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'ht',
   u'metadata': {u'iso_language_code': u'ht', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'\uffe3&gt;\uffe3    messi   .l.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Dec 13 23:22:04 +0000 2012',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1,
    u'follow_request_sent': False,
    u'followers_count': 3,
    u'following': False,
    u'friends_count': 59,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 1009941774,
    u'id_str': u'1009941774',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'ko0riko',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1009941774/1441603290',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/640756955347185664/87CNre0c_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/640756955347185664/87CNre0c_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'set32314024',
    u'statuses_count': 3,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 272349779,
      u'id_str': u'272349779',
      u'indices': [0, 11],
      u'name': u'Sports Radio BrilaFM',
      u'screen_name': u'889BrilaFM'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472924462022656,
   u'id_str': u'641472924462022656',
   u'in_reply_to_screen_name': u'889BrilaFM',
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': 272349779,
   u'in_reply_to_user_id_str': u'272349779',
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\xae</a>',
   u'text': u"@889BrilaFM I think she's talking abt Messi",
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon Nov 24 14:29:10 +0000 2014',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'proudly Mbiaya boy',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 33,
    u'follow_request_sent': False,
    u'followers_count': 382,
    u'following': False,
    u'friends_count': 1583,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 2890796571,
    u'id_str': u'2890796571',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 1,
    u'location': u'lagos,Nigeria ',
    u'name': u'JOSSY ANNY',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2890796571/1438335430',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/627050489826398208/xZ9ugpKx_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/627050489826398208/xZ9ugpKx_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'jossyanny24',
    u'statuses_count': 964,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'bit.ly/1XJl1g6',
      u'expanded_url': u'http://bit.ly/1XJl1g6',
      u'indices': [80, 102],
      u'url': u'http://t.co/IwAPYEzYul'}],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472924298317825,
   u'id_str': u'641472924298317825',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'pt',
   u'metadata': {u'iso_language_code': u'pt', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>',
   u'text': u'Messi brilha no fim, e Argentina arranca empate com o M\xe9xico (09/09/15-01h32):  http://t.co/IwAPYEzYul',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon May 14 21:38:30 +0000 2012',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'Deus no comando!',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'wlsl.ganhardinheiroagora.com',
        u'expanded_url': u'http://www.wlsl.ganhardinheiroagora.com',
        u'indices': [0, 22],
        u'url': u'http://t.co/3X2HxUGucg'}]}},
    u'favourites_count': 17,
    u'follow_request_sent': False,
    u'followers_count': 521,
    u'following': False,
    u'friends_count': 679,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 580264831,
    u'id_str': u'580264831',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'pt',
    u'listed_count': 1,
    u'location': u'',
    u'name': u'Somos Tim Maniaco ',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/580264831/1410057619',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/508444627230552064/h1DY9a6h_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/508444627230552064/h1DY9a6h_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'wlslsgda',
    u'statuses_count': 39338,
    u'time_zone': None,
    u'url': u'http://t.co/3X2HxUGucg',
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [15, 30],
      u'text': u'VamosArgentina'},
     {u'indices': [60, 66], u'text': u'Messi'},
     {u'indices': [84, 91], u'text': u'M\xe9xico'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
      u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
      u'indices': [92, 115],
      u'url': u'https://t.co/qBbmh4Vm2L'}],
    u'user_mentions': [{u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [3, 13],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472924063404032,
   u'id_str': u'641472924063404032',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 1329,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:29:06 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [0, 15],
       u'text': u'VamosArgentina'},
      {u'indices': [45, 51], u'text': u'Messi'},
      {u'indices': [69, 76], u'text': u'M\xe9xico'}],
     u'symbols': [],
     u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
       u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
       u'indices': [77, 100],
       u'url': u'https://t.co/qBbmh4Vm2L'}],
     u'user_mentions': []},
    u'favorite_count': 963,
    u'favorited': False,
    u'geo': None,
    u'id': 641468348878950400,
    u'id_str': u'641468348878950400',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 1329,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'#VamosArgentina Pecho y adentro: as\xed defini\xf3 #Messi para el 2-2 ante #M\xe9xico https://t.co/qBbmh4Vm2L',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed May 14 22:28:45 +0000 2014',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'Twitter oficial de la Selecci\xf3n Argentina. Fan Page: http://t.co/ztPTvzLubx\u2026',
     u'entities': {u'description': {u'urls': [{u'display_url': u'facebook.com/AFASeleccionAr',
         u'expanded_url': u'http://facebook.com/AFASeleccionAr',
         u'indices': [53, 75],
         u'url': u'http://t.co/ztPTvzLubx'}]},
      u'url': {u'urls': [{u'display_url': u'afa.com.ar',
         u'expanded_url': u'http://afa.com.ar',
         u'indices': [0, 22],
         u'url': u'http://t.co/si6hz2DjJT'}]}},
     u'favourites_count': 123,
     u'follow_request_sent': False,
     u'followers_count': 1648755,
     u'following': False,
     u'friends_count': 49,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 2495199115,
     u'id_str': u'2495199115',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 2215,
     u'location': u'Argentina',
     u'name': u'Selecci\xf3n Argentina',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2495199115/1441578232',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Argentina',
     u'statuses_count': 19954,
     u'time_zone': u'Buenos Aires',
     u'url': u'http://t.co/si6hz2DjJT',
     u'utc_offset': -10800,
     u'verified': True}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @Argentina: #VamosArgentina Pecho y adentro: as\xed defini\xf3 #Messi para el 2-2 ante #M\xe9xico https://t.co/qBbmh4Vm2L',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Jan 31 21:01:37 +0000 2010',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Estudiante de Periodismo. Amante de la m\xfasica y de vivir el d\xeda a d\xeda siempre de forma positiva!! Costa Rica, LDA, BARCA, BOCA!!',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 263,
    u'follow_request_sent': False,
    u'followers_count': 136,
    u'following': False,
    u'friends_count': 366,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 110234393,
    u'id_str': u'110234393',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 3,
    u'location': u'',
    u'name': u'Julio Perez Inces',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/231954090/slayer_logo.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/231954090/slayer_logo.jpg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/110234393/1432016972',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/599098584378650624/6tBsxqgP_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/599098584378650624/6tBsxqgP_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Juliopzi',
    u'statuses_count': 1284,
    u'time_zone': u'Mountain Time (US & Canada)',
    u'url': None,
    u'utc_offset': -21600,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 106122302,
      u'id_str': u'106122302',
      u'indices': [0, 11],
      u'name': u'Martin del Palacio',
      u'screen_name': u'martindelp'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472923786608640,
   u'id_str': u'641472923786608640',
   u'in_reply_to_screen_name': u'martindelp',
   u'in_reply_to_status_id': 641469345751764992,
   u'in_reply_to_status_id_str': u'641469345751764992',
   u'in_reply_to_user_id': 106122302,
   u'in_reply_to_user_id_str': u'106122302',
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'@martindelp lo empato moises, no pasaba nada, Messi estaba caminando, estaba muerto el juego. Al momento que la caga Moi era obvio el empate',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri May 06 03:57:00 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'the fuck you doing here? go home bruh.',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 3268,
    u'follow_request_sent': False,
    u'followers_count': 92,
    u'following': False,
    u'friends_count': 508,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 293873249,
    u'id_str': u'293873249',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 1,
    u'location': u'',
    u'name': u'Mr. Lopez',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/586997002/gdvnhibef8atel4p2ied.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/586997002/gdvnhibef8atel4p2ied.jpeg',
    u'profile_background_tile': False,
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/624295088294875136/wq27ivL9_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/624295088294875136/wq27ivL9_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'arlogmsl',
    u'statuses_count': 3293,
    u'time_zone': u'Eastern Time (US & Canada)',
    u'url': None,
    u'utc_offset': -14400,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 632985981,
      u'id_str': u'632985981',
      u'indices': [3, 19],
      u'name': u'RIVER PLATE',
      u'screen_name': u'_RiverPlateCarp'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472923627311105,
   u'id_str': u'641472923627311105',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'it',
   u'metadata': {u'iso_language_code': u'it', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 100,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:26:55 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 97,
    u'favorited': False,
    u'geo': None,
    u'id': 641467796338118657,
    u'id_str': u'641467796338118657',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'it',
    u'metadata': {u'iso_language_code': u'it', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 100,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    u'text': u'Krane siempre lo busca a Messi.',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed Jul 11 13:41:02 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Toda la Info, Debate, Opinion y Humor del m\xe1s grande de Argentina. No vendemos humo, te contamos la realidad.',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'facebook.com/pages/River-Pl\u2026',
         u'expanded_url': u'https://www.facebook.com/pages/River-Plate-CARP/663818396975785',
         u'indices': [0, 23],
         u'url': u'https://t.co/tiyNui8l4V'}]}},
     u'favourites_count': 739,
     u'follow_request_sent': False,
     u'followers_count': 102716,
     u'following': False,
     u'friends_count': 284,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 632985981,
     u'id_str': u'632985981',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 152,
     u'location': u'Buenos Aires, Argentina',
     u'name': u'RIVER PLATE',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/868663815/f5fc5acd98ce33fa3696e36c1efff9ba.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/868663815/f5fc5acd98ce33fa3696e36c1efff9ba.jpeg',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/632985981/1430013275',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/565556753535090689/OHn495qX_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/565556753535090689/OHn495qX_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'_RiverPlateCarp',
     u'statuses_count': 20885,
     u'time_zone': u'Buenos Aires',
     u'url': u'https://t.co/tiyNui8l4V',
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @_RiverPlateCarp: Krane siempre lo busca a Messi.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Aug 29 01:37:56 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'CON LOS OJOS CHINOS Y LA SONRISA EN GRANDE :)\r\n\r\nAMO MUCHO A MI NOVIA DELCIA SOY S\xd3LO DE ELLA\u2661\r\n\r\nNO CRITIQUES MI CAMINO SI NO SABES LO QUE CAMINE~',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 210,
    u'follow_request_sent': False,
    u'followers_count': 438,
    u'following': False,
    u'friends_count': 615,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 1708743794,
    u'id_str': u'1708743794',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 1,
    u'location': u'Mari&juana',
    u'name': u'\u10e6DelMiAmor\u2661',
    u'notifications': False,
    u'profile_background_color': u'240404',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/548779136529862657/F8XhSfgr.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/548779136529862657/F8XhSfgr.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1708743794/1418092901',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/604017995413872640/TI-t9VaB_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/604017995413872640/TI-t9VaB_normal.jpg',
    u'profile_link_color': u'1B00B3',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'CarpRodriguez13',
    u'statuses_count': 24575,
    u'time_zone': u'Brasilia',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472923556028416,
   u'id_str': u'641472923556028416',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'De los que empezaron jugando solo vi cuatro jugadores que entienden el juego que propone Martino...\nMessi, Mascherano, Banegas y Guzman.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Aug 31 16:10:26 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'H\u03b9\u03b7c\u043d\u03b1 \u2202\u0454 R\u03b9\u03bd\u0454\u044f, \u044f\u03c3\u0455\u03b1\u044f\u03b9\u03b7\u03c3 \u03c1\u03c3\u044f \u2202\u0454\u03c1\u03c3\u044f\u0442\u0454 \u0443 \u0455\u0454g\u03c5\u03b9\u2202\u03c3\u044f \u03b7\u03b1\u0442\u03c3',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'lavidaonline.com',
        u'expanded_url': u'http://www.lavidaonline.com',
        u'indices': [0, 22],
        u'url': u'http://t.co/kk47HLsUcA'}]}},
    u'favourites_count': 364,
    u'follow_request_sent': False,
    u'followers_count': 1359,
    u'following': False,
    u'friends_count': 1994,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 1716061842,
    u'id_str': u'1716061842',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 2,
    u'location': u'Rosario, Santa Fe, Argentina',
    u'name': u'K\u03b1\u03c1\u03c3\u043c\u03b9\u2113\u2113\u03c3\u0438\u03b1\u044f\u03b9\u03c3',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1716061842/1402163725',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/495972951355695104/S3a1IcFZ_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/495972951355695104/S3a1IcFZ_normal.jpeg',
    u'profile_link_color': u'3B94D9',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'000000',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': False,
    u'protected': False,
    u'screen_name': u'JcJonycabrera',
    u'statuses_count': 2852,
    u'time_zone': None,
    u'url': u'http://t.co/kk47HLsUcA',
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 1650116402,
      u'id_str': u'1650116402',
      u'indices': [3, 17],
      u'name': u'Brian',
      u'screen_name': u'BrianMontero9'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472922922696704,
   u'id_str': u'641472922922696704',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 3,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:36:10 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 3,
    u'favorited': False,
    u'geo': None,
    u'id': 641470126815117313,
    u'id_str': u'641470126815117313',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 3,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    u'text': u'En que cabeza cabe criticar a Messi?',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Tue Aug 06 11:21:29 +0000 2013',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'561FF6DC // U.D.V',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 17,
     u'follow_request_sent': False,
     u'followers_count': 655,
     u'following': False,
     u'friends_count': 525,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 1650116402,
     u'id_str': u'1650116402',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 0,
     u'location': u'',
     u'name': u'Brian',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1650116402/1436358660',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/618270895400972288/P9yred-7_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/618270895400972288/P9yred-7_normal.jpg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'BrianMontero9',
     u'statuses_count': 7377,
     u'time_zone': u'Mid-Atlantic',
     u'url': None,
     u'utc_offset': -7200,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @BrianMontero9: En que cabeza cabe criticar a Messi?',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Jun 07 23:22:03 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Un fanatico de LPDA\u2665 hincha de San Lorenzo ;)',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'facebook.com/phitty.chap',
        u'expanded_url': u'https://www.facebook.com/phitty.chap',
        u'indices': [0, 23],
        u'url': u'https://t.co/hF8GZI4RtO'}]}},
    u'favourites_count': 429,
    u'follow_request_sent': False,
    u'followers_count': 226,
    u'following': False,
    u'friends_count': 262,
    u'geo_enabled': True,
    u'has_extended_profile': True,
    u'id': 1491527683,
    u'id_str': u'1491527683',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'Facebook:',
    u'name': u'Piti +_+',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme9/bg.gif',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme9/bg.gif',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1491527683/1386003132',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/538368058168213504/VlNuMkhg_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/538368058168213504/VlNuMkhg_normal.jpeg',
    u'profile_link_color': u'3B94D9',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'000000',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': False,
    u'protected': False,
    u'screen_name': u'PitiChap',
    u'statuses_count': 5813,
    u'time_zone': u'Brasilia',
    u'url': u'https://t.co/hF8GZI4RtO',
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 1,
   u'favorited': False,
   u'geo': None,
   u'id': 641472922834587648,
   u'id_str': u'641472922834587648',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="https://mobile.twitter.com" rel="nofollow">Mobile Web (M2)</a>',
   u'text': u'MESSI mi unico heroe en esta LIO',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Nov 29 22:19:29 +0000 2012',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'13/08/14 \u2665 San Lorenzo Yo Ah Vos TeAmo / Leandro Atilio Romagnoli Mi D10S ~ Futbol + Messi + Romagnoli = Felicidad \r\n#SoloEntiendeMiLocuraQienComparteMiPasion',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 290,
    u'follow_request_sent': False,
    u'followers_count': 1409,
    u'following': False,
    u'friends_count': 1224,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 979277119,
    u'id_str': u'979277119',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 3,
    u'location': u'Buenos Aires',
    u'name': u'\u266a\u2665FuerzaPipi S.L\u2665\u266a',
    u'notifications': False,
    u'profile_background_color': u'FF6699',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme11/bg.gif',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme11/bg.gif',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/979277119/1434779659',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/612137185672863744/yylAaxwK_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/612137185672863744/yylAaxwK_normal.jpg',
    u'profile_link_color': u'B30D8C',
    u'profile_sidebar_border_color': u'CC3366',
    u'profile_sidebar_fill_color': u'E5507E',
    u'profile_text_color': u'362720',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'casla_cami',
    u'statuses_count': 8233,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 269377265,
      u'id_str': u'269377265',
      u'indices': [3, 16],
      u'name': u'Feer',
      u'screen_name': u'FeerCasellaa'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472922620690432,
   u'id_str': u'641472922620690432',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'pt',
   u'metadata': {u'iso_language_code': u'pt', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 5,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:31:22 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 7,
    u'favorited': False,
    u'geo': None,
    u'id': 641468915986636800,
    u'id_str': u'641468915986636800',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'pt',
    u'metadata': {u'iso_language_code': u'pt', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 5,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'Messi cerrando ortos',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Sun Mar 20 17:10:22 +0000 2011',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'cuando todo parece jodido es cuando hay que poner\u266b',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'facebook.com/feer.casella',
         u'expanded_url': u'http://www.facebook.com/feer.casella',
         u'indices': [0, 22],
         u'url': u'http://t.co/FzOVM1AQRt'}]}},
     u'favourites_count': 543,
     u'follow_request_sent': False,
     u'followers_count': 1124,
     u'following': False,
     u'friends_count': 639,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 269377265,
     u'id_str': u'269377265',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 0,
     u'location': u'',
     u'name': u'Feer',
     u'notifications': False,
     u'profile_background_color': u'FCEBB6',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/453711271779508224/wDr1H3B9.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/453711271779508224/wDr1H3B9.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/269377265/1388784872',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/638180713867661312/vb_H9TY1_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/638180713867661312/vb_H9TY1_normal.jpg',
     u'profile_link_color': u'4ECC35',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'78C0A8',
     u'profile_text_color': u'5E412F',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'FeerCasellaa',
     u'statuses_count': 12604,
     u'time_zone': u'Brasilia',
     u'url': u'http://t.co/FzOVM1AQRt',
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @FeerCasellaa: Messi cerrando ortos',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Tue Aug 13 02:04:23 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Sofi te amo sos todo diosa! Vale idolaaa',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1620,
    u'follow_request_sent': False,
    u'followers_count': 527,
    u'following': False,
    u'friends_count': 452,
    u'geo_enabled': True,
    u'has_extended_profile': True,
    u'id': 1666526498,
    u'id_str': u'1666526498',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'Renzoo',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/627940281623576576/U1as2JgX.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/627940281623576576/U1as2JgX.jpg',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1666526498/1438886891',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/603303492019687424/kcDp7CMp_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/603303492019687424/kcDp7CMp_normal.jpg',
    u'profile_link_color': u'FF0000',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Marzialetti10',
    u'statuses_count': 13081,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 67132221,
      u'id_str': u'67132221',
      u'indices': [3, 15],
      u'name': u'Hernan Caire ',
      u'screen_name': u'hernancaire'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472922549395456,
   u'id_str': u'641472922549395456',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 7,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:46:19 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 8,
    u'favorited': False,
    u'geo': None,
    u'id': 641472680521240576,
    u'id_str': u'641472680521240576',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 7,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Messi es todo lo que esta bien \u26bd\ufe0f\U0001f44c',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed Aug 19 21:46:05 +0000 2009',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Conductor de TV - Hincha de San Lorenzo - Pap\xe1 de Valentina - Contrataciones llamar a Catalina \u260e\ufe0f (+549 ) 1166070597 - http://t.co/3SvDaQcUoE',
     u'entities': {u'description': {u'urls': [{u'display_url': u'Instagram.com/hernancaire',
         u'expanded_url': u'http://Instagram.com/hernancaire',
         u'indices': [119, 141],
         u'url': u'http://t.co/3SvDaQcUoE'}]},
      u'url': {u'urls': [{u'display_url': u'facebook.com/hernanpcaire',
         u'expanded_url': u'https://www.facebook.com/hernanpcaire',
         u'indices': [0, 23],
         u'url': u'https://t.co/yYezolnRSo'}]}},
     u'favourites_count': 8476,
     u'follow_request_sent': False,
     u'followers_count': 339048,
     u'following': False,
     u'friends_count': 2353,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 67132221,
     u'id_str': u'67132221',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 773,
     u'location': u'(Buenos Aires - Argentina)',
     u'name': u'Hernan Caire ',
     u'notifications': False,
     u'profile_background_color': u'131516',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/874591598/02f02ff6009ded6a3ea7d2afec8e42fa.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/874591598/02f02ff6009ded6a3ea7d2afec8e42fa.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/67132221/1422929638',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/585267674718019585/4gWQFZ9Z_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/585267674718019585/4gWQFZ9Z_normal.jpg',
     u'profile_link_color': u'009999',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'EFEFEF',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'hernancaire',
     u'statuses_count': 73740,
     u'time_zone': u'Buenos Aires',
     u'url': u'https://t.co/yYezolnRSo',
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @hernancaire: Messi es todo lo que esta bien \u26bd\ufe0f\U0001f44c',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Tue Nov 27 20:18:11 +0000 2012',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Amo A Mis Mejorchus \u2665Agustinera,Mahomi, Laliter,Dominicana y Serranista Hasta El Fin\u2665 Ariana/ 18 A\xf1os/ De Boca A Morir/ Promo XV. / Insta:MarHerdeli',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'facebook.com/MarLdz',
        u'expanded_url': u'http://www.facebook.com/MarLdz',
        u'indices': [0, 22],
        u'url': u'http://t.co/JYhJDd8MB3'}]}},
    u'favourites_count': 2567,
    u'follow_request_sent': False,
    u'followers_count': 1095,
    u'following': False,
    u'friends_count': 1469,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 974626645,
    u'id_str': u'974626645',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 4,
    u'location': u'Buenos Aires',
    u'name': u'Maar \u2661\u21e7',
    u'notifications': False,
    u'profile_background_color': u'E60CB3',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/442016535373033472/R8yoNcAn.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/442016535373033472/R8yoNcAn.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/974626645/1441573917',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/640634251701022720/3YOAuC4S_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/640634251701022720/3YOAuC4S_normal.jpg',
    u'profile_link_color': u'99088F',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'7AC3EE',
    u'profile_text_color': u'3D1957',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'MariaHerdeli',
    u'statuses_count': 7501,
    u'time_zone': u'Buenos Aires',
    u'url': u'http://t.co/JYhJDd8MB3',
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'media': [{u'display_url': u'pic.twitter.com/4C0t1hGHyf',
      u'expanded_url': u'http://twitter.com/elvascheidtvyi/status/641472922184454144/photo/1',
      u'id': 641472922134138880,
      u'id_str': u'641472922134138880',
      u'indices': [111, 133],
      u'media_url': u'http://pbs.twimg.com/media/COb4OVjWUAACtmb.png',
      u'media_url_https': u'https://pbs.twimg.com/media/COb4OVjWUAACtmb.png',
      u'sizes': {u'large': {u'h': 363, u'resize': u'fit', u'w': 638},
       u'medium': {u'h': 341, u'resize': u'fit', u'w': 600},
       u'small': {u'h': 193, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'type': u'photo',
      u'url': u'http://t.co/4C0t1hGHyf'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'flogvip.net/teenwolf/DSV',
      u'expanded_url': u'http://flogvip.net/teenwolf/DSV',
      u'indices': [18, 40],
      u'url': u'http://t.co/nPwGjfKZTV'},
     {u'display_url': u'flogvip.net/teenwolf/FDDSF\u2026',
      u'expanded_url': u'http://flogvip.net/teenwolf/FDDSFSD',
      u'indices': [41, 63],
      u'url': u'http://t.co/QTDa6Ob1wk'},
     {u'display_url': u'bit.ly/TeenWolfNew',
      u'expanded_url': u'http://bit.ly/TeenWolfNew',
      u'indices': [88, 110],
      u'url': u'http://t.co/io2TZ0eAGI'}],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472922184454144,
   u'id_str': u'641472922184454144',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://ifttt.com" rel="nofollow">IFTTT</a>',
   u'text': u'needlittlelove_ : http://t.co/nPwGjfKZTV\nhttp://t.co/QTDa6Ob1wk\nMessi\nNeymar\nGago\nFran\u2026 http://t.co/io2TZ0eAGI http://t.co/4C0t1hGHyf',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Tue Aug 04 15:16:33 +0000 2015',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Lab assistant',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 0,
    u'follow_request_sent': False,
    u'followers_count': 70,
    u'following': False,
    u'friends_count': 40,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 3306088284,
    u'id_str': u'3306088284',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 28,
    u'location': u'Arizona, USA',
    u'name': u'Elvis Keily',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/3306088284/1438701711',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/628585692084375552/lgL-NSqD_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/628585692084375552/lgL-NSqD_normal.jpg',
    u'profile_link_color': u'DD2E44',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'000000',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': False,
    u'protected': False,
    u'screen_name': u'elvascheidtvyi',
    u'statuses_count': 88169,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [15, 30],
      u'text': u'VamosArgentina'},
     {u'indices': [60, 66], u'text': u'Messi'},
     {u'indices': [84, 91], u'text': u'M\xe9xico'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
      u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
      u'indices': [92, 115],
      u'url': u'https://t.co/qBbmh4Vm2L'}],
    u'user_mentions': [{u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [3, 13],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472922138316801,
   u'id_str': u'641472922138316801',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 1329,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:29:06 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [0, 15],
       u'text': u'VamosArgentina'},
      {u'indices': [45, 51], u'text': u'Messi'},
      {u'indices': [69, 76], u'text': u'M\xe9xico'}],
     u'symbols': [],
     u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
       u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
       u'indices': [77, 100],
       u'url': u'https://t.co/qBbmh4Vm2L'}],
     u'user_mentions': []},
    u'favorite_count': 963,
    u'favorited': False,
    u'geo': None,
    u'id': 641468348878950400,
    u'id_str': u'641468348878950400',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 1329,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'#VamosArgentina Pecho y adentro: as\xed defini\xf3 #Messi para el 2-2 ante #M\xe9xico https://t.co/qBbmh4Vm2L',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed May 14 22:28:45 +0000 2014',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'Twitter oficial de la Selecci\xf3n Argentina. Fan Page: http://t.co/ztPTvzLubx\u2026',
     u'entities': {u'description': {u'urls': [{u'display_url': u'facebook.com/AFASeleccionAr',
         u'expanded_url': u'http://facebook.com/AFASeleccionAr',
         u'indices': [53, 75],
         u'url': u'http://t.co/ztPTvzLubx'}]},
      u'url': {u'urls': [{u'display_url': u'afa.com.ar',
         u'expanded_url': u'http://afa.com.ar',
         u'indices': [0, 22],
         u'url': u'http://t.co/si6hz2DjJT'}]}},
     u'favourites_count': 123,
     u'follow_request_sent': False,
     u'followers_count': 1648755,
     u'following': False,
     u'friends_count': 49,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 2495199115,
     u'id_str': u'2495199115',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 2215,
     u'location': u'Argentina',
     u'name': u'Selecci\xf3n Argentina',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2495199115/1441578232',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Argentina',
     u'statuses_count': 19954,
     u'time_zone': u'Buenos Aires',
     u'url': u'http://t.co/si6hz2DjJT',
     u'utc_offset': -10800,
     u'verified': True}},
   u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   u'text': u'RT @Argentina: #VamosArgentina Pecho y adentro: as\xed defini\xf3 #Messi para el 2-2 ante #M\xe9xico https://t.co/qBbmh4Vm2L',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun May 31 07:34:43 +0000 2015',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'Soy hincha fanatica de Gimnasia',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 6002,
    u'follow_request_sent': False,
    u'followers_count': 180,
    u'following': False,
    u'friends_count': 152,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 3304415261,
    u'id_str': u'3304415261',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 1,
    u'location': u'La Plata, Argentina',
    u'name': u'Juli Gelp',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/3304415261/1440569724',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/639333310443954176/tUYdn1hr_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/639333310443954176/tUYdn1hr_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'LaTriperaJuli22',
    u'statuses_count': 6337,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
      u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
      u'indices': [67, 90],
      u'url': u'https://t.co/VpVfenlSGd'}],
    u'user_mentions': [{u'id': 593829645,
      u'id_str': u'593829645',
      u'indices': [3, 18],
      u'name': u'Fantas\xeda F\xfatbol',
      u'screen_name': u'FantasiaFutbol'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472922004103169,
   u'id_str': u'641472922004103169',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 295,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:28:51 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
       u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
       u'indices': [47, 70],
       u'url': u'https://t.co/VpVfenlSGd'}],
     u'user_mentions': []},
    u'favorite_count': 175,
    u'favorited': False,
    u'geo': None,
    u'id': 641468285079326720,
    u'id_str': u'641468285079326720',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 295,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    u'text': u'Messi armando L\xedo, el genio frot\xf3 la lampara.\n\nhttps://t.co/VpVfenlSGd',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Tue May 29 14:22:30 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Soy Hondure\xf1o. Apasionado del f\xfatbol Argentino, No, no soy Mario Kempes. ||  CONTACTO: fantasiafutbol10@gmail.com',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'youtube.com/channel/UCCqi1\u2026',
         u'expanded_url': u'https://youtube.com/channel/UCCqi1tGZKxI2zcxHAY39M9w',
         u'indices': [0, 23],
         u'url': u'https://t.co/Ily2hVQeDI'}]}},
     u'favourites_count': 4641,
     u'follow_request_sent': False,
     u'followers_count': 37416,
     u'following': False,
     u'friends_count': 27579,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 593829645,
     u'id_str': u'593829645',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 83,
     u'location': u'Tegucigalpa, Honduras.',
     u'name': u'Fantas\xeda F\xfatbol',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/570644670/ahbp7pyw6fe61mkivxlh.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/570644670/ahbp7pyw6fe61mkivxlh.jpeg',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/593829645/1438200310',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/438464979147038720/9hz7uscJ_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/438464979147038720/9hz7uscJ_normal.jpeg',
     u'profile_link_color': u'2A82BD',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'FantasiaFutbol',
     u'statuses_count': 19108,
     u'time_zone': u'Central Time (US & Canada)',
     u'url': u'https://t.co/Ily2hVQeDI',
     u'utc_offset': -18000,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @FantasiaFutbol: Messi armando L\xedo, el genio frot\xf3 la lampara.\n\nhttps://t.co/VpVfenlSGd',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Jun 11 00:06:57 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Si puedes so\xf1arlo, puedes lograrlo \u30c4',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'facebook.com/camylithaa.mir\u2026',
        u'expanded_url': u'https://www.facebook.com/camylithaa.miranda?ref=tn_tnmn',
        u'indices': [0, 23],
        u'url': u'https://t.co/s7H1bMAuHT'}]}},
    u'favourites_count': 5648,
    u'follow_request_sent': False,
    u'followers_count': 1620,
    u'following': False,
    u'friends_count': 1551,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 314891788,
    u'id_str': u'314891788',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 6,
    u'location': u'',
    u'name': u'LMC #1',
    u'notifications': False,
    u'profile_background_color': u'ACDED6',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/606172231941517312/0OsAyMoq.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/606172231941517312/0OsAyMoq.jpg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/314891788/1440289924',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/639821538657726464/2R05IcGk_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/639821538657726464/2R05IcGk_normal.jpg',
    u'profile_link_color': u'038543',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'CamilaMiranda18',
    u'statuses_count': 30276,
    u'time_zone': None,
    u'url': u'https://t.co/s7H1bMAuHT',
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 450303700,
      u'id_str': u'450303700',
      u'indices': [3, 16],
      u'name': u'El Titi',
      u'screen_name': u'LucasDoomine'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472921869918208,
   u'id_str': u'641472921869918208',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 1,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:42:06 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 1,
    u'favorited': False,
    u'geo': None,
    u'id': 641471618951311361,
    u'id_str': u'641471618951311361',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 1,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    u'text': u'El gol de messi me trajo malos recuerdos , bastanete parecido a uno de gotze \U0001f612',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Fri Dec 30 03:11:24 +0000 2011',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 1629,
     u'follow_request_sent': False,
     u'followers_count': 192,
     u'following': False,
     u'friends_count': 191,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 450303700,
     u'id_str': u'450303700',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 2,
     u'location': u'',
     u'name': u'El Titi',
     u'notifications': False,
     u'profile_background_color': u'0000FF',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/497415380768280576/hvi_ujjl.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/497415380768280576/hvi_ujjl.png',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/450303700/1441516330',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/635291609907757056/sLeZrqKS_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/635291609907757056/sLeZrqKS_normal.jpg',
     u'profile_link_color': u'3B94D9',
     u'profile_sidebar_border_color': u'000000',
     u'profile_sidebar_fill_color': u'000000',
     u'profile_text_color': u'000000',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'LucasDoomine',
     u'statuses_count': 2878,
     u'time_zone': u'Brasilia',
     u'url': None,
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   u'text': u'RT @LucasDoomine: El gol de messi me trajo malos recuerdos , bastanete parecido a uno de gotze \U0001f612',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Feb 10 21:21:55 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'perro#1, hincha fanatico del mas grande Club Atletico River Plate , 16 a\xf1os',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 9653,
    u'follow_request_sent': False,
    u'followers_count': 1148,
    u'following': False,
    u'friends_count': 710,
    u'geo_enabled': True,
    u'has_extended_profile': True,
    u'id': 1167070208,
    u'id_str': u'1167070208',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 3,
    u'location': u'Buenos Aires, Argentina',
    u'name': u'Perro#1',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme9/bg.gif',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme9/bg.gif',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1167070208/1432534886',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/633129315530579968/EpHwiI0X_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/633129315530579968/EpHwiI0X_normal.jpg',
    u'profile_link_color': u'3B94D9',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'000000',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': False,
    u'protected': False,
    u'screen_name': u'ezequieldecarp',
    u'statuses_count': 48557,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'bit.ly/1XJiJ0x',
      u'expanded_url': u'http://bit.ly/1XJiJ0x',
      u'indices': [61, 83],
      u'url': u'http://t.co/LkQDmWzI11'}],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472921538461697,
   u'id_str': u'641472921538461697',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'pt',
   u'metadata': {u'iso_language_code': u'pt', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>',
   u'text': u'Messi brilha no fim, e Argentina arranca empate com o M\xe9xico http://t.co/LkQDmWzI11',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Mar 25 21:17:49 +0000 2011',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'Mensagens, Frases, Sms para celular. Tudo isso voc\xea confere no http://t.co/zqQCuw0NDa',
    u'entities': {u'description': {u'urls': [{u'display_url': u'festivaldemensagens.blogspot.com',
        u'expanded_url': u'http://festivaldemensagens.blogspot.com',
        u'indices': [63, 85],
        u'url': u'http://t.co/zqQCuw0NDa'}]},
     u'url': {u'urls': [{u'display_url': u'festivaldemensagens.blogspot.com',
        u'expanded_url': u'http://festivaldemensagens.blogspot.com',
        u'indices': [0, 22],
        u'url': u'http://t.co/zqQCuw0NDa'}]}},
    u'favourites_count': 22,
    u'follow_request_sent': False,
    u'followers_count': 2087,
    u'following': False,
    u'friends_count': 2347,
    u'geo_enabled': False,
    u'has_extended_profile': False,
    u'id': 272110077,
    u'id_str': u'272110077',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'pt',
    u'listed_count': 15,
    u'location': u'',
    u'name': u'Luan Matheus',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/272110077/1385085892',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000742804500/007a74a55d26740aad3b7ca7749dd2b4_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000742804500/007a74a55d26740aad3b7ca7749dd2b4_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'LuaNmrv',
    u'statuses_count': 180392,
    u'time_zone': u'Greenland',
    u'url': u'http://t.co/zqQCuw0NDa',
    u'utc_offset': -7200,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 872874973,
      u'id_str': u'872874973',
      u'indices': [3, 17],
      u'name': u'Pedro Dominguez',
      u'screen_name': u'pedrominguez_'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472921379147776,
   u'id_str': u'641472921379147776',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 12,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:44:27 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 6,
    u'favorited': False,
    u'geo': None,
    u'id': 641472211514036225,
    u'id_str': u'641472211514036225',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 12,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    u'text': u'Lionel Messi est\xe1 en una faceta en la que hace lo que quiere, como quiere y (sobretodo) cuando quiere. Ve lo que va a pasar, no lo que pasa.',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Thu Oct 11 02:33:57 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'1992 | Periodista deportivo @aztecadeportes @el9ymedio',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'futboltotal.com.mx/author/pedro-d\u2026',
         u'expanded_url': u'http://www.futboltotal.com.mx/author/pedro-dominguez/',
         u'indices': [0, 22],
         u'url': u'http://t.co/2Cwbf3xFxW'}]}},
     u'favourites_count': 2483,
     u'follow_request_sent': False,
     u'followers_count': 6337,
     u'following': False,
     u'friends_count': 1504,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 872874973,
     u'id_str': u'872874973',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 62,
     u'location': u'Mexico D.F.',
     u'name': u'Pedro Dominguez',
     u'notifications': False,
     u'profile_background_color': u'0A0A0A',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/470380689464897536/84jvQxit.jpeg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/470380689464897536/84jvQxit.jpeg',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/872874973/1436891385',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/620994302559150080/0AX-ryfL_normal.jpg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/620994302559150080/0AX-ryfL_normal.jpg',
     u'profile_link_color': u'B80431',
     u'profile_sidebar_border_color': u'000000',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'pedrominguez_',
     u'statuses_count': 12908,
     u'time_zone': u'Eastern Time (US & Canada)',
     u'url': u'http://t.co/2Cwbf3xFxW',
     u'utc_offset': -14400,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @pedrominguez_: Lionel Messi est\xe1 en una faceta en la que hace lo que quiere, como quiere y (sobretodo) cuando quiere. Ve lo que va a pa\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri May 13 18:08:36 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Amor eterno River Plate y a Lionel Andres Messi \u2665-Intagram:Juancr013',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 468,
    u'follow_request_sent': False,
    u'followers_count': 565,
    u'following': False,
    u'friends_count': 1338,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 298107463,
    u'id_str': u'298107463',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'Juanccr',
    u'notifications': False,
    u'profile_background_color': u'0D0D0D',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000119738366/16e53c8f1ba3b7133d236e0afe870459.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000119738366/16e53c8f1ba3b7133d236e0afe870459.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/298107463/1363661530',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/628747650637148160/WlPJnBuh_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/628747650637148160/WlPJnBuh_normal.jpg',
    u'profile_link_color': u'00BBFF',
    u'profile_sidebar_border_color': u'FFFFFF',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'JuanCruzRossi',
    u'statuses_count': 1228,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [81, 87], u'text': u'Messi'}],
    u'media': [{u'display_url': u'pic.twitter.com/LJmrNhmKE5',
      u'expanded_url': u'http://twitter.com/lv_arena/status/641472921123323904/photo/1',
      u'id': 641472907768655872,
      u'id_str': u'641472907768655872',
      u'indices': [111, 133],
      u'media_url': u'http://pbs.twimg.com/media/COb4NgCWcAApEIM.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb4NgCWcAApEIM.jpg',
      u'sizes': {u'large': {u'h': 356, u'resize': u'fit', u'w': 560},
       u'medium': {u'h': 356, u'resize': u'fit', u'w': 560},
       u'small': {u'h': 216, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'type': u'photo',
      u'url': u'http://t.co/LJmrNhmKE5'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'goo.gl/vdDWkX',
      u'expanded_url': u'http://goo.gl/vdDWkX',
      u'indices': [88, 110],
      u'url': u'http://t.co/sW0f7d7Lm2'}],
    u'user_mentions': [{u'id': 268361752,
      u'id_str': u'268361752',
      u'indices': [55, 69],
      u'name': u'Selecci\xf3n Nacional ',
      u'screen_name': u'miseleccionmx'},
     {u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [70, 80],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472921123323904,
   u'id_str': u'641472921123323904',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
   u'text': u'Messi aparece al final y le quita la victoria a M\xe9xico @miseleccionmx @Argentina #Messi http://t.co/sW0f7d7Lm2 http://t.co/LJmrNhmKE5',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Jan 30 16:00:18 +0000 2015',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 19,
    u'follow_request_sent': False,
    u'followers_count': 172,
    u'following': False,
    u'friends_count': 130,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 3005830131,
    u'id_str': u'3005830131',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 5,
    u'location': u'',
    u'name': u'ArenaLv',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/3005830131/1422891963',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/562275652930240512/PQsnVll2_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/562275652930240512/PQsnVll2_normal.jpeg',
    u'profile_link_color': u'DD2E44',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'000000',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': False,
    u'protected': False,
    u'screen_name': u'lv_arena',
    u'statuses_count': 5559,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [81, 87], u'text': u'Messi'}],
    u'media': [{u'display_url': u'pic.twitter.com/KfUlClTcSl',
      u'expanded_url': u'http://twitter.com/Verdad_Yucatan/status/641472921119145984/photo/1',
      u'id': 641472917797253120,
      u'id_str': u'641472917797253120',
      u'indices': [111, 133],
      u'media_url': u'http://pbs.twimg.com/media/COb4OFZWsAADsAk.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb4OFZWsAADsAk.jpg',
      u'sizes': {u'large': {u'h': 356, u'resize': u'fit', u'w': 560},
       u'medium': {u'h': 356, u'resize': u'fit', u'w': 560},
       u'small': {u'h': 216, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'type': u'photo',
      u'url': u'http://t.co/KfUlClTcSl'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'goo.gl/vdDWkX',
      u'expanded_url': u'http://goo.gl/vdDWkX',
      u'indices': [88, 110],
      u'url': u'http://t.co/WWUIsQNYKD'}],
    u'user_mentions': [{u'id': 268361752,
      u'id_str': u'268361752',
      u'indices': [55, 69],
      u'name': u'Selecci\xf3n Nacional ',
      u'screen_name': u'miseleccionmx'},
     {u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [70, 80],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472921119145984,
   u'id_str': u'641472921119145984',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
   u'text': u'Messi aparece al final y le quita la victoria a M\xe9xico @miseleccionmx @Argentina #Messi http://t.co/WWUIsQNYKD http://t.co/KfUlClTcSl',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Jul 13 17:05:21 +0000 2012',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'laverdadyucatan.com',
        u'expanded_url': u'http://www.laverdadyucatan.com',
        u'indices': [0, 22],
        u'url': u'http://t.co/RYY1sNoIIS'}]}},
    u'favourites_count': 1,
    u'follow_request_sent': False,
    u'followers_count': 458,
    u'following': False,
    u'friends_count': 2001,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 634719421,
    u'id_str': u'634719421',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 10,
    u'location': u'M\xe9rida ',
    u'name': u'La Verdad Yucat\xe1n',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/634719421/1419954611',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/549955676152139776/40_Kn9rD_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/549955676152139776/40_Kn9rD_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Verdad_Yucatan',
    u'statuses_count': 8521,
    u'time_zone': u'Eastern Time (US & Canada)',
    u'url': u'http://t.co/RYY1sNoIIS',
    u'utc_offset': -14400,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:17 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [81, 87], u'text': u'Messi'}],
    u'media': [{u'display_url': u'pic.twitter.com/rIo9o1JkNT',
      u'expanded_url': u'http://twitter.com/Diario_LaVerdad/status/641472921114931203/photo/1',
      u'id': 641472916027260928,
      u'id_str': u'641472916027260928',
      u'indices': [111, 133],
      u'media_url': u'http://pbs.twimg.com/media/COb4N-zWwAArJeB.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb4N-zWwAArJeB.jpg',
      u'sizes': {u'large': {u'h': 356, u'resize': u'fit', u'w': 560},
       u'medium': {u'h': 356, u'resize': u'fit', u'w': 560},
       u'small': {u'h': 216, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'type': u'photo',
      u'url': u'http://t.co/rIo9o1JkNT'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'goo.gl/vdDWkX',
      u'expanded_url': u'http://goo.gl/vdDWkX',
      u'indices': [88, 110],
      u'url': u'http://t.co/RFPbk8E71b'}],
    u'user_mentions': [{u'id': 268361752,
      u'id_str': u'268361752',
      u'indices': [55, 69],
      u'name': u'Selecci\xf3n Nacional ',
      u'screen_name': u'miseleccionmx'},
     {u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [70, 80],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472921114931203,
   u'id_str': u'641472921114931203',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
   u'text': u'Messi aparece al final y le quita la victoria a M\xe9xico @miseleccionmx @Argentina #Messi http://t.co/RFPbk8E71b http://t.co/rIo9o1JkNT',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Fri Sep 11 01:32:14 +0000 2009',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'No vivas enga\xf1ado busca #LaPuraVerdad.\r\nPeriodico de Quintana Roo.',
    u'entities': {u'description': {u'urls': []},
     u'url': {u'urls': [{u'display_url': u'laverdadnoticias.com',
        u'expanded_url': u'http://www.laverdadnoticias.com',
        u'indices': [0, 22],
        u'url': u'http://t.co/V9grePZJFE'}]}},
    u'favourites_count': 549,
    u'follow_request_sent': False,
    u'followers_count': 8391,
    u'following': False,
    u'friends_count': 1477,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 73275576,
    u'id_str': u'73275576',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 150,
    u'location': u'Quintana Roo',
    u'name': u'Diario La Verdad',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/73275576/1427136118',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/554771347256004609/NTAlr39Q_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/554771347256004609/NTAlr39Q_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Diario_LaVerdad',
    u'statuses_count': 114460,
    u'time_zone': u'Central Time (US & Canada)',
    u'url': u'http://t.co/V9grePZJFE',
    u'utc_offset': -18000,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:16 +0000 2015',
   u'entities': {u'hashtags': [],
    u'media': [{u'display_url': u'pic.twitter.com/aDW36sjAb5',
      u'expanded_url': u'http://twitter.com/Messiologia/status/641472388081819649/photo/1',
      u'id': 641472298764095488,
      u'id_str': u'641472298764095488',
      u'indices': [139, 140],
      u'media_url': u'http://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
      u'sizes': {u'large': {u'h': 573, u'resize': u'fit', u'w': 940},
       u'medium': {u'h': 365, u'resize': u'fit', u'w': 600},
       u'small': {u'h': 207, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641472388081819649,
      u'source_status_id_str': u'641472388081819649',
      u'source_user_id': 889476378,
      u'source_user_id_str': u'889476378',
      u'type': u'photo',
      u'url': u'http://t.co/aDW36sjAb5'}],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 889476378,
      u'id_str': u'889476378',
      u'indices': [3, 15],
      u'name': u'Messiolog\xeda',
      u'screen_name': u'Messiologia'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472920607395840,
   u'id_str': u'641472920607395840',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 73,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:45:09 +0000 2015',
    u'entities': {u'hashtags': [],
     u'media': [{u'display_url': u'pic.twitter.com/aDW36sjAb5',
       u'expanded_url': u'http://twitter.com/Messiologia/status/641472388081819649/photo/1',
       u'id': 641472298764095488,
       u'id_str': u'641472298764095488',
       u'indices': [118, 140],
       u'media_url': u'http://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb3qDUWUAAN2_-.jpg',
       u'sizes': {u'large': {u'h': 573, u'resize': u'fit', u'w': 940},
        u'medium': {u'h': 365, u'resize': u'fit', u'w': 600},
        u'small': {u'h': 207, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/aDW36sjAb5'}],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 55,
    u'favorited': False,
    u'geo': None,
    u'id': 641472388081819649,
    u'id_str': u'641472388081819649',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 73,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http://t.co/aDW36sjAb5',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Thu Oct 18 18:33:04 +0000 2012',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Haci\xe9ndole el aguante al mejor del mundo.',
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'messiologiatw.blogspot.com',
         u'expanded_url': u'http://messiologiatw.blogspot.com',
         u'indices': [0, 22],
         u'url': u'http://t.co/xpFeAGqm6c'}]}},
     u'favourites_count': 27019,
     u'follow_request_sent': False,
     u'followers_count': 25794,
     u'following': False,
     u'friends_count': 98,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 889476378,
     u'id_str': u'889476378',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 91,
     u'location': u'messiologiatw@gmail.com',
     u'name': u'Messiolog\xeda',
     u'notifications': False,
     u'profile_background_color': u'08BAF0',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/468969003604385792/6ak3eAUZ.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/468969003604385792/6ak3eAUZ.png',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/889476378/1418970869',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/545407312559484928/EtbfheBb_normal.png',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/545407312559484928/EtbfheBb_normal.png',
     u'profile_link_color': u'08BAF0',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Messiologia',
     u'statuses_count': 30448,
     u'time_zone': u'Caracas',
     u'url': u'http://t.co/xpFeAGqm6c',
     u'utc_offset': -16200,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @Messiologia: Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http\u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon May 19 22:42:01 +0000 2014',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Enfermo de BocaJuniors / Amante de la musica / Messista /fan de kendo kaponi / fan de cosculluela   FB: Gian Cucchi  instagram: GianCucchii',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1732,
    u'follow_request_sent': False,
    u'followers_count': 622,
    u'following': False,
    u'friends_count': 684,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 2554597462,
    u'id_str': u'2554597462',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'San Martin, Buenos Aires',
    u'name': u'Gianluca Cucchi \u2665 ',
    u'notifications': False,
    u'profile_background_color': u'1A1B1F',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme9/bg.gif',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme9/bg.gif',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2554597462/1436996477',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/627856924491534340/4R79bwKt_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/627856924491534340/4R79bwKt_normal.jpg',
    u'profile_link_color': u'2FC2EF',
    u'profile_sidebar_border_color': u'181A1E',
    u'profile_sidebar_fill_color': u'252429',
    u'profile_text_color': u'666666',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'GianCucchii',
    u'statuses_count': 3354,
    u'time_zone': u'Buenos Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:16 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
      u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
      u'indices': [108, 131],
      u'url': u'https://t.co/PvYR1hBSRR'}],
    u'user_mentions': [{u'id': 125438806,
      u'id_str': u'125438806',
      u'indices': [3, 14],
      u'name': u'V\xedctorVela',
      u'screen_name': u'velavictor'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472920439660544,
   u'id_str': u'641472920439660544',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 1,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:46:16 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
       u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
       u'indices': [92, 115],
       u'url': u'https://t.co/PvYR1hBSRR'}],
     u'user_mentions': []},
    u'favorite_count': 2,
    u'favorited': False,
    u'geo': None,
    u'id': 641472666512191489,
    u'id_str': u'641472666512191489',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 1,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'Los de la pancarta anterior llevan raz\xf3n. Dale hasta un mel\xf3n a Messi que puede hacer esto  https://t.co/PvYR1hBSRR',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Mon Mar 22 20:29:04 +0000 2010',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Feo, fuerte y formal',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 571,
     u'follow_request_sent': False,
     u'followers_count': 215,
     u'following': False,
     u'friends_count': 778,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 125438806,
     u'id_str': u'125438806',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'en',
     u'listed_count': 5,
     u'location': u'between USA and Spain',
     u'name': u'V\xedctorVela',
     u'notifications': False,
     u'profile_background_color': u'505659',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/555464659/401424_369325966427091_255008607858828_1468038_91944882_n.jpg',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/555464659/401424_369325966427091_255008607858828_1468038_91944882_n.jpg',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/125438806/1349067691',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/455941102348955649/CYCtKiZN_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/455941102348955649/CYCtKiZN_normal.jpeg',
     u'profile_link_color': u'29BA3F',
     u'profile_sidebar_border_color': u'CBEBC1',
     u'profile_sidebar_fill_color': u'85E691',
     u'profile_text_color': u'050405',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'velavictor',
     u'statuses_count': 6792,
     u'time_zone': u'Madrid',
     u'url': None,
     u'utc_offset': 7200,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   u'text': u'RT @velavictor: Los de la pancarta anterior llevan raz\xf3n. Dale hasta un mel\xf3n a Messi que puede hacer esto  https://t.co/PvYR1hBSRR',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Jun 27 19:08:53 +0000 2010',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'FC Barcelona. Atl\xe9tico Nacional. F\xf3rmula 1',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 12645,
    u'follow_request_sent': False,
    u'followers_count': 2847,
    u'following': False,
    u'friends_count': 3132,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 160285946,
    u'id_str': u'160285946',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 16,
    u'location': u'Bogot\xe1, Colombia',
    u'name': u'Diego Montenegro',
    u'notifications': False,
    u'profile_background_color': u'85FF66',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/832316475/c78a5cf5b83ae4cece2b1d3164288434.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/832316475/c78a5cf5b83ae4cece2b1d3164288434.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/160285946/1381273090',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/633678259054583808/0T_ryr4o_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/633678259054583808/0T_ryr4o_normal.jpg',
    u'profile_link_color': u'199E05',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'E8E8E8',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Diego_2794',
    u'statuses_count': 11375,
    u'time_zone': u'Bogota',
    u'url': None,
    u'utc_offset': -18000,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:16 +0000 2015',
   u'entities': {u'hashtags': [{u'indices': [15, 27], u'text': u'GiraPorEEUU'},
     {u'indices': [72, 78], u'text': u'Messi'}],
    u'media': [{u'display_url': u'pic.twitter.com/3PErTqAdIV',
      u'expanded_url': u'http://twitter.com/Argentina/status/641472333845282816/photo/1',
      u'id': 641472323267231744,
      u'id_str': u'641472323267231744',
      u'indices': [109, 131],
      u'media_url': u'http://pbs.twimg.com/media/COb3remWgAA8zMs.jpg',
      u'media_url_https': u'https://pbs.twimg.com/media/COb3remWgAA8zMs.jpg',
      u'sizes': {u'large': {u'h': 682, u'resize': u'fit', u'w': 1023},
       u'medium': {u'h': 400, u'resize': u'fit', u'w': 600},
       u'small': {u'h': 226, u'resize': u'fit', u'w': 340},
       u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
      u'source_status_id': 641472333845282816,
      u'source_status_id_str': u'641472333845282816',
      u'source_user_id': 2495199115,
      u'source_user_id_str': u'2495199115',
      u'type': u'photo',
      u'url': u'http://t.co/3PErTqAdIV'}],
    u'symbols': [],
    u'urls': [{u'display_url': u'goo.gl/AAXBUw',
      u'expanded_url': u'http://goo.gl/AAXBUw',
      u'indices': [86, 108],
      u'url': u'http://t.co/zrtnM9Ucg9'}],
    u'user_mentions': [{u'id': 2495199115,
      u'id_str': u'2495199115',
      u'indices': [3, 13],
      u'name': u'Selecci\xf3n Argentina',
      u'screen_name': u'Argentina'},
     {u'id': 139092348,
      u'id_str': u'139092348',
      u'indices': [53, 69],
      u'name': u'Sergio Kun Aguero',
      u'screen_name': u'aguerosergiokun'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472920397582336,
   u'id_str': u'641472920397582336',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 62,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:44:57 +0000 2015',
    u'entities': {u'hashtags': [{u'indices': [0, 12], u'text': u'GiraPorEEUU'},
      {u'indices': [57, 63], u'text': u'Messi'}],
     u'media': [{u'display_url': u'pic.twitter.com/3PErTqAdIV',
       u'expanded_url': u'http://twitter.com/Argentina/status/641472333845282816/photo/1',
       u'id': 641472323267231744,
       u'id_str': u'641472323267231744',
       u'indices': [94, 116],
       u'media_url': u'http://pbs.twimg.com/media/COb3remWgAA8zMs.jpg',
       u'media_url_https': u'https://pbs.twimg.com/media/COb3remWgAA8zMs.jpg',
       u'sizes': {u'large': {u'h': 682, u'resize': u'fit', u'w': 1023},
        u'medium': {u'h': 400, u'resize': u'fit', u'w': 600},
        u'small': {u'h': 226, u'resize': u'fit', u'w': 340},
        u'thumb': {u'h': 150, u'resize': u'crop', u'w': 150}},
       u'type': u'photo',
       u'url': u'http://t.co/3PErTqAdIV'}],
     u'symbols': [],
     u'urls': [{u'display_url': u'goo.gl/AAXBUw',
       u'expanded_url': u'http://goo.gl/AAXBUw',
       u'indices': [71, 93],
       u'url': u'http://t.co/zrtnM9Ucg9'}],
     u'user_mentions': [{u'id': 139092348,
       u'id_str': u'139092348',
       u'indices': [38, 54],
       u'name': u'Sergio Kun Aguero',
       u'screen_name': u'aguerosergiokun'}]},
    u'favorite_count': 84,
    u'favorited': False,
    u'geo': None,
    u'id': 641472333845282816,
    u'id_str': u'641472333845282816',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'retweet_count': 62,
    u'retweeted': False,
    u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    u'text': u'#GiraPorEEUU Volv\xe9 a ver los goles de @aguerosergiokun y #Messi --&gt; http://t.co/zrtnM9Ucg9 http://t.co/3PErTqAdIV',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Wed May 14 22:28:45 +0000 2014',
     u'default_profile': True,
     u'default_profile_image': False,
     u'description': u'Twitter oficial de la Selecci\xf3n Argentina. Fan Page: http://t.co/ztPTvzLubx\u2026',
     u'entities': {u'description': {u'urls': [{u'display_url': u'facebook.com/AFASeleccionAr',
         u'expanded_url': u'http://facebook.com/AFASeleccionAr',
         u'indices': [53, 75],
         u'url': u'http://t.co/ztPTvzLubx'}]},
      u'url': {u'urls': [{u'display_url': u'afa.com.ar',
         u'expanded_url': u'http://afa.com.ar',
         u'indices': [0, 22],
         u'url': u'http://t.co/si6hz2DjJT'}]}},
     u'favourites_count': 123,
     u'follow_request_sent': False,
     u'followers_count': 1648755,
     u'following': False,
     u'friends_count': 49,
     u'geo_enabled': True,
     u'has_extended_profile': False,
     u'id': 2495199115,
     u'id_str': u'2495199115',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 2215,
     u'location': u'Argentina',
     u'name': u'Selecci\xf3n Argentina',
     u'notifications': False,
     u'profile_background_color': u'C0DEED',
     u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
     u'profile_background_tile': False,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2495199115/1441578232',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/562704603662123008/bFgKEos9_normal.jpeg',
     u'profile_link_color': u'0084B4',
     u'profile_sidebar_border_color': u'C0DEED',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'Argentina',
     u'statuses_count': 19954,
     u'time_zone': u'Buenos Aires',
     u'url': u'http://t.co/si6hz2DjJT',
     u'utc_offset': -10800,
     u'verified': True}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @Argentina: #GiraPorEEUU Volv\xe9 a ver los goles de @aguerosergiokun y #Messi --&gt; http://t.co/zrtnM9Ucg9 http://t.co/3PErTqAdIV',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Mon May 06 23:34:29 +0000 2013',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'LEO MESSI,EL MEJOR JUGADOR DEL MUNDO Y DE LA HISTORIA\u26bd FC Barcelona,el mejor equipo sin duda y \xfanico en tener 2 tripletes\u26bd,CF Am\xe9rica \u26bd',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 10724,
    u'follow_request_sent': False,
    u'followers_count': 132,
    u'following': False,
    u'friends_count': 83,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 1408945704,
    u'id_str': u'1408945704',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 3,
    u'location': u'',
    u'name': u'Irving Zorrilla',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1408945704/1433645842',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/606470542128873473/NMD097aG_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/606470542128873473/NMD097aG_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'Irvingzorrilla',
    u'statuses_count': 6863,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:16 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472920280104960,
   u'id_str': u'641472920280104960',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'Jajajaja. Dobaben. Le cambio de canal y al regresar apareci\xf3 Messi y ya estaba empatado. Ya ni chingan.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Jan 01 06:07:08 +0000 2011',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'No soy pesimista, lo que pasa es que ustedes no se dan cuenta que nos estamos hundiendo en un gran mont\xf3n de mierda.',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1582,
    u'follow_request_sent': False,
    u'followers_count': 862,
    u'following': False,
    u'friends_count': 362,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 232758650,
    u'id_str': u'232758650',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 23,
    u'location': u'Pachuca, Hidalgo. M\xe9xico',
    u'name': u'Gustavo God\xednez',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/232758650/1357021574',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/3604670592/cc7c463b02d1e25f7b99d40d6b027a76_normal.jpeg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3604670592/cc7c463b02d1e25f7b99d40d6b027a76_normal.jpeg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'escupeletras',
    u'statuses_count': 20319,
    u'time_zone': u'Mexico City',
    u'url': None,
    u'utc_offset': -18000,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:16 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [{u'display_url': u'twitter.com/camilaentanga/\u2026',
      u'expanded_url': u'https://twitter.com/camilaentanga/status/641470019361218560',
      u'indices': [24, 47],
      u'url': u'https://t.co/IBT9yALWFv'}],
    u'user_mentions': [{u'id': 1192424227,
      u'id_str': u'1192424227',
      u'indices': [3, 11],
      u'name': u'luna.',
      u'screen_name': u'sxfetch'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472920242532353,
   u'id_str': u'641472920242532353',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': True,
   u'lang': u'et',
   u'metadata': {u'iso_language_code': u'et', u'result_type': u'recent'},
   u'place': None,
   u'possibly_sensitive': False,
   u'retweet_count': 2,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:38:19 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [{u'display_url': u'twitter.com/camilaentanga/\u2026',
       u'expanded_url': u'https://twitter.com/camilaentanga/status/641470019361218560',
       u'indices': [11, 34],
       u'url': u'https://t.co/IBT9yALWFv'}],
     u'user_mentions': []},
    u'favorite_count': 1,
    u'favorited': False,
    u'geo': None,
    u'id': 641470668450701313,
    u'id_str': u'641470668450701313',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': True,
    u'lang': u'et',
    u'metadata': {u'iso_language_code': u'et', u'result_type': u'recent'},
    u'place': None,
    u'possibly_sensitive': False,
    u'quoted_status': {u'contributors': None,
     u'coordinates': None,
     u'created_at': u'Wed Sep 09 04:35:45 +0000 2015',
     u'entities': {u'hashtags': [],
      u'symbols': [],
      u'urls': [{u'display_url': u'vine.co/v/etDmrE5dLBD',
        u'expanded_url': u'https://vine.co/v/etDmrE5dLBD',
        u'indices': [20, 43],
        u'url': u'https://t.co/2jQB1lN97T'}],
      u'user_mentions': []},
     u'favorite_count': 5,
     u'favorited': False,
     u'geo': None,
     u'id': 641470019361218560,
     u'id_str': u'641470019361218560',
     u'in_reply_to_screen_name': None,
     u'in_reply_to_status_id': None,
     u'in_reply_to_status_id_str': None,
     u'in_reply_to_user_id': None,
     u'in_reply_to_user_id_str': None,
     u'is_quote_status': False,
     u'lang': u'es',
     u'metadata': {u'iso_language_code': u'et', u'result_type': u'recent'},
     u'place': None,
     u'possibly_sensitive': False,
     u'retweet_count': 10,
     u'retweeted': False,
     u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
     u'text': u'APRENDAN DEL MEJOR\n\nhttps://t.co/2jQB1lN97T',
     u'truncated': False},
    u'quoted_status_id': 641470019361218560,
    u'quoted_status_id_str': u'641470019361218560',
    u'retweet_count': 2,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    u'text': u'MESSI D10S https://t.co/IBT9yALWFv',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Mon Feb 18 07:58:43 +0000 2013',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u"don't have sex because you'll get pregnant and die",
     u'entities': {u'description': {u'urls': []},
      u'url': {u'urls': [{u'display_url': u'instagram.com/we.take.pills',
         u'expanded_url': u'http://www.instagram.com/we.take.pills',
         u'indices': [0, 22],
         u'url': u'http://t.co/1zMdGGypxA'}]}},
     u'favourites_count': 476,
     u'follow_request_sent': False,
     u'followers_count': 2369,
     u'following': False,
     u'friends_count': 2437,
     u'geo_enabled': True,
     u'has_extended_profile': True,
     u'id': 1192424227,
     u'id_str': u'1192424227',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 30,
     u'location': u'aylu | P3T3R4$$',
     u'name': u'luna.',
     u'notifications': False,
     u'profile_background_color': u'FFFFFF',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/434237366354468864/L7o8M-i4.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/434237366354468864/L7o8M-i4.png',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1192424227/1436334152',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/618654089816219648/d2KWNwW7_normal.png',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/618654089816219648/d2KWNwW7_normal.png',
     u'profile_link_color': u'D4D9E6',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'DDEEF6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'sxfetch',
     u'statuses_count': 40625,
     u'time_zone': u'Buenos Aires',
     u'url': u'http://t.co/1zMdGGypxA',
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @sxfetch: MESSI D10S https://t.co/IBT9yALWFv',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sun Apr 28 01:22:48 +0000 2013',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'my heart belongs to you, camila |\nDemi Lovato mi esposa',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 284,
    u'follow_request_sent': False,
    u'followers_count': 466,
    u'following': False,
    u'friends_count': 399,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 1385839346,
    u'id_str': u'1385839346',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 0,
    u'location': u'arg',
    u'name': u'gxc',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/633697763717419008/yzA0vc6k.jpg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/633697763717419008/yzA0vc6k.jpg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1385839346/1440973004',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/640309982131539968/dZLQAAWW_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/640309982131539968/dZLQAAWW_normal.jpg',
    u'profile_link_color': u'3B94D9',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'000000',
    u'profile_text_color': u'000000',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'soydkbello',
    u'statuses_count': 13901,
    u'time_zone': u'America/Argentina/Buenos_Aires',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:16 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': [{u'id': 1523451836,
      u'id_str': u'1523451836',
      u'indices': [3, 14],
      u'name': u'Gabriela',
      u'screen_name': u'L0UISPOTRO'}]},
   u'favorite_count': 0,
   u'favorited': False,
   u'geo': None,
   u'id': 641472920083169280,
   u'id_str': u'641472920083169280',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'es',
   u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
   u'place': None,
   u'retweet_count': 7,
   u'retweeted': False,
   u'retweeted_status': {u'contributors': None,
    u'coordinates': None,
    u'created_at': u'Wed Sep 09 04:42:55 +0000 2015',
    u'entities': {u'hashtags': [],
     u'symbols': [],
     u'urls': [],
     u'user_mentions': []},
    u'favorite_count': 2,
    u'favorited': False,
    u'geo': None,
    u'id': 641471823268446208,
    u'id_str': u'641471823268446208',
    u'in_reply_to_screen_name': None,
    u'in_reply_to_status_id': None,
    u'in_reply_to_status_id_str': None,
    u'in_reply_to_user_id': None,
    u'in_reply_to_user_id_str': None,
    u'is_quote_status': False,
    u'lang': u'es',
    u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
    u'place': None,
    u'retweet_count': 7,
    u'retweeted': False,
    u'source': u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    u'text': u'*el partido*\n-Kun vamos perdiendo, entra \n-Uh bueno toma gol, ahora lo empate messi\n.....\n-Messi ya termina el partido\n-Uh colgu\xe9, toma gol',
    u'truncated': False,
    u'user': {u'contributors_enabled': False,
     u'created_at': u'Sun Jun 16 23:16:24 +0000 2013',
     u'default_profile': False,
     u'default_profile_image': False,
     u'description': u'Louis Tomlinson is my life',
     u'entities': {u'description': {u'urls': []}},
     u'favourites_count': 4243,
     u'follow_request_sent': False,
     u'followers_count': 17356,
     u'following': False,
     u'friends_count': 5347,
     u'geo_enabled': False,
     u'has_extended_profile': False,
     u'id': 1523451836,
     u'id_str': u'1523451836',
     u'is_translation_enabled': False,
     u'is_translator': False,
     u'lang': u'es',
     u'listed_count': 37,
     u'location': u'liam/4',
     u'name': u'Gabriela',
     u'notifications': False,
     u'profile_background_color': u'FFFFFF',
     u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/624451068278218752/a8pv1Bg2.png',
     u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/624451068278218752/a8pv1Bg2.png',
     u'profile_background_tile': True,
     u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1523451836/1440629458',
     u'profile_image_url': u'http://pbs.twimg.com/profile_images/640603204003188736/XVcdJ6VB_normal.png',
     u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/640603204003188736/XVcdJ6VB_normal.png',
     u'profile_link_color': u'615B61',
     u'profile_sidebar_border_color': u'FFFFFF',
     u'profile_sidebar_fill_color': u'F6F6F6',
     u'profile_text_color': u'333333',
     u'profile_use_background_image': True,
     u'protected': False,
     u'screen_name': u'L0UISPOTRO',
     u'statuses_count': 25433,
     u'time_zone': u'Buenos Aires',
     u'url': None,
     u'utc_offset': -10800,
     u'verified': False}},
   u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   u'text': u'RT @L0UISPOTRO: *el partido*\n-Kun vamos perdiendo, entra \n-Uh bueno toma gol, ahora lo empate messi\n.....\n-Messi ya termina el partido\n-Uh \u2026',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Thu Sep 01 14:36:23 +0000 2011',
    u'default_profile': False,
    u'default_profile_image': False,
    u'description': u'Que pretendo no saber? \\\\ 07\\06\\15 \u2764 & Yo no se como explicar que te llevo hasta en la piel \xae\xa9*17\u26bd^^ Bayern \u2764 ^^ LVP  & Wpp 3472503223',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 1930,
    u'follow_request_sent': False,
    u'followers_count': 961,
    u'following': False,
    u'friends_count': 1002,
    u'geo_enabled': True,
    u'has_extended_profile': True,
    u'id': 366072668,
    u'id_str': u'366072668',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'es',
    u'listed_count': 3,
    u'location': u'',
    u'name': u'MILITO HAY UNO SOLO\u2605',
    u'notifications': False,
    u'profile_background_color': u'000000',
    u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/436347923039674369/dpilTIPC.jpeg',
    u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/436347923039674369/dpilTIPC.jpeg',
    u'profile_background_tile': True,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/366072668/1441174887',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/618261441020329984/ZbzuiL1e_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/618261441020329984/ZbzuiL1e_normal.jpg',
    u'profile_link_color': u'89C9FA',
    u'profile_sidebar_border_color': u'000000',
    u'profile_sidebar_fill_color': u'EFEFEF',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'NicoComello',
    u'statuses_count': 20823,
    u'time_zone': u'Santiago',
    u'url': None,
    u'utc_offset': -10800,
    u'verified': False}},
  {u'contributors': None,
   u'coordinates': None,
   u'created_at': u'Wed Sep 09 04:47:16 +0000 2015',
   u'entities': {u'hashtags': [],
    u'symbols': [],
    u'urls': [],
    u'user_mentions': []},
   u'favorite_count': 1,
   u'favorited': False,
   u'geo': None,
   u'id': 641472919294509056,
   u'id_str': u'641472919294509056',
   u'in_reply_to_screen_name': None,
   u'in_reply_to_status_id': None,
   u'in_reply_to_status_id_str': None,
   u'in_reply_to_user_id': None,
   u'in_reply_to_user_id_str': None,
   u'is_quote_status': False,
   u'lang': u'en',
   u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
   u'place': {u'attributes': {},
    u'bounding_box': {u'coordinates': [[[-97.233811, 32.586565],
       [-97.037464, 32.586565],
       [-97.037464, 32.817135],
       [-97.233811, 32.817135]]],
     u'type': u'Polygon'},
    u'contained_within': [],
    u'country': u'United States',
    u'country_code': u'US',
    u'full_name': u'Arlington, TX',
    u'id': u'6e315e1f96e0450a',
    u'name': u'Arlington',
    u'place_type': u'city',
    u'url': u'https://api.twitter.com/1.1/geo/id/6e315e1f96e0450a.json'},
   u'retweet_count': 0,
   u'retweeted': False,
   u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   u'text': u'Messi is good but we all know Lord Bendtner is GOAT.',
   u'truncated': False,
   u'user': {u'contributors_enabled': False,
    u'created_at': u'Sat Sep 28 04:45:43 +0000 2013',
    u'default_profile': True,
    u'default_profile_image': False,
    u'description': u'#HalaMadrid Class of 2015 Jennifer Flores 08-08-2012',
    u'entities': {u'description': {u'urls': []}},
    u'favourites_count': 440,
    u'follow_request_sent': False,
    u'followers_count': 97,
    u'following': False,
    u'friends_count': 88,
    u'geo_enabled': True,
    u'has_extended_profile': False,
    u'id': 1913143045,
    u'id_str': u'1913143045',
    u'is_translation_enabled': False,
    u'is_translator': False,
    u'lang': u'en',
    u'listed_count': 0,
    u'location': u'',
    u'name': u'Isco',
    u'notifications': False,
    u'profile_background_color': u'C0DEED',
    u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
    u'profile_background_tile': False,
    u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1913143045/1440891202',
    u'profile_image_url': u'http://pbs.twimg.com/profile_images/630885656806318080/cnU6O-TS_normal.jpg',
    u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/630885656806318080/cnU6O-TS_normal.jpg',
    u'profile_link_color': u'0084B4',
    u'profile_sidebar_border_color': u'C0DEED',
    u'profile_sidebar_fill_color': u'DDEEF6',
    u'profile_text_color': u'333333',
    u'profile_use_background_image': True,
    u'protected': False,
    u'screen_name': u'GOAT_Isco',
    u'statuses_count': 1148,
    u'time_zone': None,
    u'url': None,
    u'utc_offset': None,
    u'verified': False}}]}

Podemos sacar información desde que plataforma/dispositivo fueron realizados los twts


In [10]:
map( lambda i: results['statuses'][i]['source'], range(len(results['statuses'])))


Out[10]:
[u'<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>',
 u'<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\xae</a>',
 u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
 u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
 u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
 u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
 u'<a href="http://www.twitter.com" rel="nofollow">Twitter for BlackBerry</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>',
 u'<a href="http://trendsmap.com/" rel="nofollow">Trendsmap Alerting</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://ifttt.com" rel="nofollow">IFTTT</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\xae</a>',
 u'<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="https://mobile.twitter.com" rel="nofollow">Mobile Web (M2)</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://ifttt.com" rel="nofollow">IFTTT</a>',
 u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
 u'<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
 u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
 u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
 u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>']

In [11]:
text = map( lambda i: results['statuses'][i]['text'], range(len(results['statuses'])))
text


Out[11]:
[u'RT @sebapizman: Aguero toc\xf3 8 pelotas y en 5 oportunidades lo busc\xf3 a Messi. T\xe9vez toc\xf3 43, s\xf3lo 9 a Messi. Ah\xed lo ten\xe9s al socio de Lionel.',
 u'RT @HumorAlFutbol: Sacaron al Chicharito y messi se inspiro',
 u'@HeernanGimenez 7, Roman, El Kun y Messi. Y que vengan todos los putos',
 u'Messi es un crack \U0001f525',
 u'RT @WeAreBARFans: Video: Goal Messi (2-2) vs ARG https://t.co/9OtAfyoNBr [via argentina]',
 u'RT @Argentina: #VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://\u2026',
 u'RT @BraiMolina: Me puedo llegar a pelear con todo el mundo por defender a Messi. Es \xfanico y ninguno va a ser como el. Por algo es el mejor \u2026',
 u'Messi haciendo un Goetze.',
 u'RT @messi10stats: Messi 49-56 Batistuta',
 u'RT @Messiologia: Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http\u2026',
 u'RT @rsvolpi: La dupla Ag\xfcero-Messi es indiscutida en la Selecci\xf3n Argentina, aunque algunos jugadores tengan m\xe1s prensa que otros.',
 u'Kun-Messi es la f\xf3rmula, no jodamos m\xe1s.',
 u'Messi brilha no fim, e Argentina arranca empate com o M\xe9xico (09/09/15-01h32):  http://t.co/6vubpnjzDW',
 u'RT @QuiqueCano: Despertateeeeeeee. A messi se le ocurri\xf3 armar un par de jugadas. https://t.co/pPLfHUJ7yS',
 u'RT @barcastuff: Video: Goal Messi (2-2) vs ARG https://t.co/xLBBNUeQH5 [via @argentina]',
 u'RT @Argentina: #VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://\u2026',
 u'RT @GeniusFootball: Messi just did a Gotze  http://t.co/u3AIzt9nKq',
 u'A Messi lo banco siempre menos en las finales con Argentina, todav\xeda espero que me cierre la boca!',
 u'RT @messi10stats: Messi Messi Messi http://t.co/kzntJvndgU',
 u'Lo de Messi es de otro mundo, gracias por quedarte genio!',
 u'RT @soldadocFCB: Hay una frase que dice: "Messi est\xe1 pero no est\xe1, de momento aparece y te hace un desastre y te cambia el partido" \U0001f64f\U0001f64f\U0001f64f',
 u'RT @GeniusFootball: Messi just did a Gotze  http://t.co/u3AIzt9nKq',
 u'RT @FootyVibez: Messi doesnt realize he scored the same goal that lost him the World Cup\U0001f480\nhttp://t.co/tc7sN7X48b',
 u'RT @scorpion2121: Retweeted Alejandro Farffann (@farffanntastico):\n\nGolazo de #Messi a lo #Gotze, me hizo recordar el gol de la... http://t\u2026',
 u'http://t.co/QyVZtK4YPl\nhttp://t.co/jpxbyK4aXs\nMessi\nNeymar\nGago\nFranco Masini',
 u'http://t.co/LJBIFGanpN\nhttp://t.co/nAxwOtljdg\nMessi\nNeymar\nGago\nFranco Masini',
 u'RT @Messiologia: Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http\u2026',
 u'http://t.co/4cZsGzJZfG\nhttp://t.co/JDCmuOIGPL\nMessi\nNeymar\nGago\nFranco Masini',
 u'"@chilakilleitor: Que no mamen, dijeron que no iba a jugar messi, ese empate no vale" golasooo de el anano!@Chava_lglesias @otroHugoSanchez',
 u'RT @FFuerteAlMedio: Habilitaci\xf3n de Ag\xfcero y definici\xf3n exquisita de Messi http://t.co/4KLvXZxd7D',
 u'@TIIIIIITI @GarbariniNehuen nose lo poco que vi, messi fue uno mas en la cancha.',
 u'RT @Argentina: #GiraPorEEUU Volv\xe9 a ver los goles de @aguerosergiokun y #Messi --&gt; http://t.co/zrtnM9Ucg9 http://t.co/3PErTqAdIV',
 u'RT @Argentina: #VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://\u2026',
 u'@quintinLLP A Lavezzi lo veo m\xe1s maduro, decide bien. Igual, arriba de titulares Messi, Di Mar\xeda y Aguero.',
 u'RT @RiverettiSports: Y cuanto tienes a Messi, pues nada, Messi hizo un Messi: http://t.co/lCa6WMBE6r',
 u'RT @elfernetsoy: Messi es todo lo que esta bien',
 u'RT @BraiMolina: Me puedo llegar a pelear con todo el mundo por defender a Messi. Es \xfanico y ninguno va a ser como el. Por algo es el mejor \u2026',
 u'RT @FootballFact101: #VIDEO Lionel Messi makes it 2-2...he learned that from Mario Gotze last year in the World Cup final. https://t.co/5dd\u2026',
 u'RT @SoyMrFutbol: Golazo de Messi. A lo G\xf6tze\U0001f602 http://t.co/tDVihBkjEY',
 u'Para mi todo lo que haga messi esta bien.. Si empieza a hacer gol el contra YO se lo festejo',
 u'Pero si todos mirando el partido cant\xf3 el gol de #Messi fue hermoso. Nunca me sent\xed m\xe1s parte de una celebraci\xf3n en mi vida que ese gol. \U0001f60d',
 u'RT @ChoVanian: El chab\xf3n que relataba dijo que el gol de Messi fue similar al de Gotze y mi coraz\xf3n se parti\xf3 en dos.',
 u'RT @Galvaque: Un americanista como Lay\xfan pidi\xe9ndole la playera a Messi y el argentino le dice con un tajante: \xa1NO!',
 u'Messi brilha no fim, e Argentina arranca empate com o M\xe9xico (09/09/15-01h32):  http://t.co/5wQlBeMNVf',
 u'#messi is now trending in #Dallas http://t.co/WwqK3kHNMD',
 u'RT @NoMemesFutbol: La Magia de Messi... http://t.co/9fevVWyvBS',
 u'@littlefaceok La Selecci\xf3n: \nRomero\nZabaleta Garay Masche Rojo\nBiglia Krane Tucu\nMessi Di Maria \nAg\xfcero',
 u'RT @AlexZendejas8: Messi would score as soon as I leave the game smh.. \U0001f61e',
 u'RT @Argentina: #VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://\u2026',
 u'RT @Argentina: #VamosArgentina \xa1Final del partido! Con goles de Ag\xfcero y Messi, la Selecci\xf3n lleg\xf3 al empate http://t.co/LmWU4B29ZZ http://\u2026',
 u'RT @Messiologia: Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http\u2026',
 u'Vos me est\xe1s cargando q ahora todos saltan con que messi es el mejor y cuando argentina perdi\xf3 las dos finales lo odiaban al pobre tipo',
 u'RT @ShiWantsTheC: Mexico 2 - 2 Argentina\n\nMan Of The Match: Messi http://t.co/B2QcBnXfdb',
 u'Messi \U0001f60d\u2764',
 u'RT @fannyrvr: Ya se merec\xeda ese gol Messi\U0001f60d',
 u"Y'ALL CAN'T EVEN IMAGINE HOW LOUD I SCREAMED WHEN MESSI SCORED HOLY FUCCKKKK",
 u'RT @SomosInvictos: \xa1GOOOOOOOOOOOOOOOOOOOOOOOOOL de Argentina! Lo hizo Lionel Andr\xe9s Messi. Lo empataron los de Gerardo Martino. M\xe9xico 2-2 \u2026',
 u'RT @CoquitaDeVidrio: \u2014El Piojo Herrera cuando Messi meti\xf3 el gol. http://t.co/3wJCBYOpSf',
 u'RT @Messiboy5: Messi is just a special player that can change the game just like that',
 u'RT @FootyVibez: Messi doesnt realize he scored the same goal that lost him the World Cup\U0001f480\nhttp://t.co/tc7sN7X48b',
 u'RT @TatianaLizar: Gracias Dios por haberme mandado a este mundo en la misma \xe9poca que #Messi \U0001f499\U0001f60d',
 u'RT @maria_enema: Los mexicanos no contaban con su astucia y no hablo del Chapulin Colorado hablo de Messi',
 u'RT @Profe_k: Gran verdad dicha x Senosiain. Quieren imponer la dupla Messi-T\xe9vez. Pero la verdadera sociedad est\xe1 en Messi-Ag\xfcero.',
 u'RT @prestico_ddd: LAS CARAS DE LOS MEXICANOS COMO DICIENDO QUE PASO ... JAJAJAJA\nLEO MESSI PASO PAPA',
 u'RT @GeniusFootball: Messi just did a Gotze  http://t.co/u3AIzt9nKq',
 u'Yo sigo esperando el d\xeda en que messi nos sea sincero y nos diga de que galaxia vino, es que, no, no puede ser real',
 u'RT @fanylopez24: Messi apareci\xf3 una vez. Pero con que calidad apareci\xf3. #Genio',
 u'spacewalkwr : http://t.co/nPwGjfKZTV\nhttp://t.co/QTDa6Ob1wk\nMessi\nNeymar\nGago\nFranco M\u2026 http://t.co/io2TZ0eAGI http://t.co/qgTWVhjXKu',
 u'RT @aiticampos: \U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f Messi Messi Messi Messi \U0001f64c',
 u'@TomyGarcia obvio, asistencia incre\xedble, pero sigo teniendo a messi en el pedestal',
 u'RT @Messiologia: Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http\u2026',
 u'RT @SomosInvictos: Lo de Messi es buen\xedsimo, pero el pase de El Kun... https://t.co/d8rhxbiCIH',
 u'RT @Cuenca__11: It had to be messi \U0001f605 2-2 #MEXvARG',
 u'\uffe3&gt;\uffe3    messi   .l.',
 u"@889BrilaFM I think she's talking abt Messi",
 u'Messi brilha no fim, e Argentina arranca empate com o M\xe9xico (09/09/15-01h32):  http://t.co/IwAPYEzYul',
 u'RT @Argentina: #VamosArgentina Pecho y adentro: as\xed defini\xf3 #Messi para el 2-2 ante #M\xe9xico https://t.co/qBbmh4Vm2L',
 u'@martindelp lo empato moises, no pasaba nada, Messi estaba caminando, estaba muerto el juego. Al momento que la caga Moi era obvio el empate',
 u'RT @_RiverPlateCarp: Krane siempre lo busca a Messi.',
 u'De los que empezaron jugando solo vi cuatro jugadores que entienden el juego que propone Martino...\nMessi, Mascherano, Banegas y Guzman.',
 u'RT @BrianMontero9: En que cabeza cabe criticar a Messi?',
 u'MESSI mi unico heroe en esta LIO',
 u'RT @FeerCasellaa: Messi cerrando ortos',
 u'RT @hernancaire: Messi es todo lo que esta bien \u26bd\ufe0f\U0001f44c',
 u'needlittlelove_ : http://t.co/nPwGjfKZTV\nhttp://t.co/QTDa6Ob1wk\nMessi\nNeymar\nGago\nFran\u2026 http://t.co/io2TZ0eAGI http://t.co/4C0t1hGHyf',
 u'RT @Argentina: #VamosArgentina Pecho y adentro: as\xed defini\xf3 #Messi para el 2-2 ante #M\xe9xico https://t.co/qBbmh4Vm2L',
 u'RT @FantasiaFutbol: Messi armando L\xedo, el genio frot\xf3 la lampara.\n\nhttps://t.co/VpVfenlSGd',
 u'RT @LucasDoomine: El gol de messi me trajo malos recuerdos , bastanete parecido a uno de gotze \U0001f612',
 u'Messi brilha no fim, e Argentina arranca empate com o M\xe9xico http://t.co/LkQDmWzI11',
 u'RT @pedrominguez_: Lionel Messi est\xe1 en una faceta en la que hace lo que quiere, como quiere y (sobretodo) cuando quiere. Ve lo que va a pa\u2026',
 u'Messi aparece al final y le quita la victoria a M\xe9xico @miseleccionmx @Argentina #Messi http://t.co/sW0f7d7Lm2 http://t.co/LJmrNhmKE5',
 u'Messi aparece al final y le quita la victoria a M\xe9xico @miseleccionmx @Argentina #Messi http://t.co/WWUIsQNYKD http://t.co/KfUlClTcSl',
 u'Messi aparece al final y le quita la victoria a M\xe9xico @miseleccionmx @Argentina #Messi http://t.co/RFPbk8E71b http://t.co/rIo9o1JkNT',
 u'RT @Messiologia: Messi est\xe1 A 6 GOLES de ser el m\xe1ximo goleador de la HISTORIA de la Selecci\xf3n Argentina, superando a Batistuta. D10S. http\u2026',
 u'RT @velavictor: Los de la pancarta anterior llevan raz\xf3n. Dale hasta un mel\xf3n a Messi que puede hacer esto  https://t.co/PvYR1hBSRR',
 u'RT @Argentina: #GiraPorEEUU Volv\xe9 a ver los goles de @aguerosergiokun y #Messi --&gt; http://t.co/zrtnM9Ucg9 http://t.co/3PErTqAdIV',
 u'Jajajaja. Dobaben. Le cambio de canal y al regresar apareci\xf3 Messi y ya estaba empatado. Ya ni chingan.',
 u'RT @sxfetch: MESSI D10S https://t.co/IBT9yALWFv',
 u'RT @L0UISPOTRO: *el partido*\n-Kun vamos perdiendo, entra \n-Uh bueno toma gol, ahora lo empate messi\n.....\n-Messi ya termina el partido\n-Uh \u2026',
 u'Messi is good but we all know Lord Bendtner is GOAT.']

In [13]:
screen_name = map( lambda i: results['statuses'][i]['user']['screen_name'], range(len(results['statuses'])))
screen_name


Out[13]:
[u'DamiaoA85',
 u'_javiiaguero_',
 u'MaatiCai',
 u'RomanooCL',
 u'Gabriel_Avar234',
 u'HugoAzulkrema',
 u'AlbertoSiles',
 u'edward_correa',
 u'MINHCHG',
 u'fedelima27',
 u'MATHUCAI',
 u'manuelgiaccio',
 u'j_wesleyy',
 u'Lucas_86768',
 u'Sensei_mansoor',
 u'37Atlanta',
 u'tapiacesar48',
 u'Guusilla',
 u'27597878',
 u'ExeeMaxy',
 u'CarolaDicarlo',
 u'BoriiBro',
 u'SarahM1303',
 u'farffanntastico',
 u'spacewalkwr',
 u'needlittlelove_',
 u'mikelperez6',
 u'2021visions',
 u'NolloStarK',
 u'Sasha_Catalina',
 u'GonzaaaVallejo',
 u'MaLaura1367',
 u'cervantnico',
 u'alejandroburgos',
 u'HansDavid__',
 u'FlorzitaPerez93',
 u'Emi_Liuzzo',
 u'GedyGinandaa',
 u'manu3l86',
 u'Fraanciscotoma1',
 u'Ruben_ZZZ',
 u'NaniMillonaria',
 u'karit_niki',
 u'Apocalipse81',
 u'TrendsDallas',
 u'toxicdelusions',
 u'ivanhojman',
 u'LaleauVince18',
 u'LaTriperaJuli22',
 u'Kari_Azul',
 u'futbolfcybj',
 u'marusepulvedaok',
 u'ElisaidaReyes',
 u'AilenCordobaAP',
 u'MeDicenPJ',
 u'SaraZarate8',
 u'slao67',
 u'_silviahl',
 u'leogiron6',
 u'vwayne3',
 u'CamilaFunes2',
 u'MeDicenPJ',
 u'linopereyra',
 u'eee_facu',
 u'eddyy___',
 u'ramadeun4rb0l',
 u'Diana30504176',
 u'elvascheidtvyi',
 u'AgustinArregui1',
 u'AgusLaPorta',
 u'AlejoMartin1_',
 u'DavidRiveraC01',
 u'_izzy6_',
 u'set32314024',
 u'jossyanny24',
 u'wlslsgda',
 u'Juliopzi',
 u'arlogmsl',
 u'CarpRodriguez13',
 u'JcJonycabrera',
 u'PitiChap',
 u'casla_cami',
 u'Marzialetti10',
 u'MariaHerdeli',
 u'elvascheidtvyi',
 u'LaTriperaJuli22',
 u'CamilaMiranda18',
 u'ezequieldecarp',
 u'LuaNmrv',
 u'JuanCruzRossi',
 u'lv_arena',
 u'Verdad_Yucatan',
 u'Diario_LaVerdad',
 u'GianCucchii',
 u'Diego_2794',
 u'Irvingzorrilla',
 u'escupeletras',
 u'soydkbello',
 u'NicoComello',
 u'GOAT_Isco']

Cantidad de seguidores, id del ususario, etc.


In [14]:
followers_count = map( lambda i: results['statuses'][i]['user']['followers_count'], range(len(results['statuses'])))

In [15]:
id_ = map( lambda i: results['statuses'][i]['user']['id'], range(len(results['statuses'])))

Tablas con prettytable


In [16]:
pt = PrettyTable()
pt.add_column('screen_name', screen_name)
pt.add_column('followers_count', followers_count)
print pt


+-----------------+-----------------+
|   screen_name   | followers_count |
+-----------------+-----------------+
|    DamiaoA85    |        77       |
|  _javiiaguero_  |       277       |
|     MaatiCai    |       1056      |
|    RomanooCL    |       339       |
| Gabriel_Avar234 |       203       |
|  HugoAzulkrema  |       346       |
|   AlbertoSiles  |       337       |
|  edward_correa  |       276       |
|     MINHCHG     |        59       |
|    fedelima27   |        29       |
|     MATHUCAI    |       483       |
|  manuelgiaccio  |       342       |
|    j_wesleyy    |       338       |
|   Lucas_86768   |       337       |
|  Sensei_mansoor |       1315      |
|    37Atlanta    |        16       |
|   tapiacesar48  |        68       |
|     Guusilla    |       700       |
|     27597878    |       277       |
|     ExeeMaxy    |       239       |
|  CarolaDicarlo  |       358       |
|     BoriiBro    |       119       |
|    SarahM1303   |        89       |
| farffanntastico |       4424      |
|   spacewalkwr   |       1859      |
| needlittlelove_ |       895       |
|   mikelperez6   |       1145      |
|   2021visions   |       1658      |
|    NolloStarK   |        83       |
|  Sasha_Catalina |       193       |
|  GonzaaaVallejo |       382       |
|   MaLaura1367   |        46       |
|   cervantnico   |       298       |
| alejandroburgos |       134       |
|   HansDavid__   |       639       |
| FlorzitaPerez93 |       1335      |
|    Emi_Liuzzo   |       494       |
|   GedyGinandaa  |       533       |
|     manu3l86    |       381       |
| Fraanciscotoma1 |       2089      |
|    Ruben_ZZZ    |       155       |
|  NaniMillonaria |       1212      |
|    karit_niki   |       1651      |
|   Apocalipse81  |       6810      |
|   TrendsDallas  |       2736      |
|  toxicdelusions |       780       |
|    ivanhojman   |       272       |
|  LaleauVince18  |       183       |
| LaTriperaJuli22 |       180       |
|    Kari_Azul    |       1594      |
|   futbolfcybj   |        68       |
| marusepulvedaok |       368       |
|  ElisaidaReyes  |       832       |
|  AilenCordobaAP |       712       |
|    MeDicenPJ    |       554       |
|   SaraZarate8   |       691       |
|      slao67     |       324       |
|    _silviahl    |       885       |
|    leogiron6    |       489       |
|     vwayne3     |       1148      |
|   CamilaFunes2  |       110       |
|    MeDicenPJ    |       554       |
|   linopereyra   |       429       |
|     eee_facu    |        68       |
|     eddyy___    |       484       |
|  ramadeun4rb0l  |       1431      |
|  Diana30504176  |       139       |
|  elvascheidtvyi |        70       |
| AgustinArregui1 |       306       |
|   AgusLaPorta   |       507       |
|  AlejoMartin1_  |       1067      |
|  DavidRiveraC01 |        60       |
|     _izzy6_     |       166       |
|   set32314024   |        3        |
|   jossyanny24   |       382       |
|     wlslsgda    |       521       |
|     Juliopzi    |       136       |
|     arlogmsl    |        92       |
| CarpRodriguez13 |       438       |
|  JcJonycabrera  |       1359      |
|     PitiChap    |       226       |
|    casla_cami   |       1409      |
|  Marzialetti10  |       527       |
|   MariaHerdeli  |       1095      |
|  elvascheidtvyi |        70       |
| LaTriperaJuli22 |       180       |
| CamilaMiranda18 |       1620      |
|  ezequieldecarp |       1148      |
|     LuaNmrv     |       2087      |
|  JuanCruzRossi  |       565       |
|     lv_arena    |       172       |
|  Verdad_Yucatan |       458       |
| Diario_LaVerdad |       8391      |
|   GianCucchii   |       622       |
|    Diego_2794   |       2847      |
|  Irvingzorrilla |       132       |
|   escupeletras  |       862       |
|    soydkbello   |       466       |
|   NicoComello   |       961       |
|    GOAT_Isco    |        97       |
+-----------------+-----------------+

In [17]:
words = [ word for twt in text for word in twt.split() ]
c = Counter(words)
print c.most_common()

pt = PrettyTable(field_names=['Words', 'Count'])
map(lambda r: pt.add_row(r), c.most_common()[:5])
print pt


[(u'RT', 63), (u'Messi', 60), (u'de', 49), (u'a', 34), (u'la', 30), (u'y', 30), (u'el', 29), (u'que', 26), (u'lo', 17), (u'en', 13), (u'al', 13), (u'no', 13), (u'empate', 12), (u'messi', 11), (u'Selecci\xf3n', 11), (u'es', 11), (u'#Messi', 10), (u'A', 9), (u'@Argentina:', 9), (u'est\xe1', 8), (u'Messi,', 8), (u'Messi.', 8), (u'M\xe9xico', 8), (u'ser', 8), (u'Ag\xfcero', 7), (u'goles', 7), (u'Argentina,', 7), (u'con', 7), (u'the', 7), (u'#VamosArgentina', 7), (u'un', 7), (u'del', 6), (u'gol', 6), (u'Gotze', 5), (u'HISTORIA', 5), (u'partido!', 5), (u'lleg\xf3', 5), (u'6', 5), (u'D10S.', 5), (u'me', 5), (u'http\u2026', 5), (u'se', 5), (u'\xa1Final', 5), (u'le', 5), (u'Neymar', 5), (u'todo', 5), (u'that', 5), (u'@Messiologia:', 5), (u'GOLES', 5), (u'superando', 5), (u'Con', 5), (u'just', 5), (u'Argentina', 5), (u'm\xe1ximo', 5), (u'Batistuta.', 5), (u'Gago', 5), (u'http://\u2026', 5), (u'los', 5), (u'goleador', 5), (u'http://t.co/LmWU4B29ZZ', 5), (u'mi', 4), (u'\u2026', 4), (u'Lo', 4), (u'El', 4), (u'Franco', 4), (u'2-2', 4), (u'esta', 4), (u'MESSI', 4), (u'como', 4), (u'una', 4), (u'com', 4), (u'por', 4), (u'is', 4), (u'fim,', 4), (u'o', 4), (u'arranca', 4), (u'brilha', 4), (u'aparece', 4), (u'e', 4), (u'estaba', 3), (u'did', 3), (u'cuando', 3), (u'La', 3), (u'pero', 3), (u'hizo', 3), (u'Lionel', 3), (u'Masini', 3), (u'World', 3), (u'Pero', 3), (u'@miseleccionmx', 3), (u'quita', 3), (u'final', 3), (u'm\xe1s', 3), (u'http://t.co/u3AIzt9nKq', 3), (u'victoria', 3), (u'@Argentina', 3), (u'fue', 3), (u'va', 3), (u'mejor', 3), (u'todos', 3), (u'I', 3), (u'@GeniusFootball:', 3), (u'ese', 3), (u'mundo', 3), (u'(09/09/15-01h32):', 3), (u'Video:', 2), (u'ver', 2), (u'apareci\xf3', 2), (u'te', 2), (u'sigo', 2), (u'hace', 2), (u'Me', 2), (u'hablo', 2), (u'siempre', 2), (u'adentro:', 2), (u'pelear', 2), (u'@FootyVibez:', 2), (u'goal', 2), (u'Ya', 2), (u'PASO', 2), (u'las', 2), (u'Golazo', 2), (u'http://t.co/3PErTqAdIV', 2), (u'ya', 2), (u'realize', 2), (u'as\xed', 2), (u'Cup\U0001f480', 2), (u'#GiraPorEEUU', 2), (u'Volv\xe9', 2), (u'Es', 2), (u'\xfanico', 2), (u'llegar', 2), (u'2', 2), (u'para', 2), (u'Di', 2), (u'http://t.co/QTDa6Ob1wk', 2), (u'http://t.co/tc7sN7X48b', 2), (u'Por', 2), (u'Goal', 2), (u'defender', 2), (u'https://t.co/qBbmh4Vm2L', 2), (u'gol.', 2), (u'Krane', 2), (u'him', 2), (u'Y', 2), (u'bien', 2), (u'finales', 2), (u'toc\xf3', 2), (u'ahora', 2), (u'Los', 2), (u'ante', 2), (u'-Uh', 2), (u'partido', 2), (u'jugadores', 2), (u'Pecho', 2), (u'#M\xe9xico', 2), (u'vs', 2), (u'in', 2), (u'@aguerosergiokun', 2), (u'same', 2), (u'hacer', 2), (u'dupla', 2), (u'ARG', 2), (u'uno', 2), (u'@SomosInvictos:', 2), (u'momento', 2), (u'defini\xf3', 2), (u'nos', 2), (u'nada,', 2), (u'http://t.co/zrtnM9Ucg9', 2), (u'game', 2), (u'el.', 2), (u'lost', 2), (u'(2-2)', 2), (u'ninguno', 2), (u'http://t.co/nPwGjfKZTV', 2), (u'puedo', 2), (u'puede', 2), (u'@messi10stats:', 2), (u'algo', 2), (u'doesnt', 2), (u'http://t.co/io2TZ0eAGI', 2), (u':', 2), (u'--&gt;', 2), (u'he', 2), (u'[via', 2), (u'as', 2), (u'scored', 2), (u'@BraiMolina:', 2), (u'all', 1), (u'armar', 1), (u'\U0001f605', 1), (u'unico', 1), (u'http://t.co/B2QcBnXfdb', 1), (u'menos', 1), (u'https://t.co/PvYR1hBSRR', 1), (u'otro', 1), (u'Messi?', 1), (u'@sxfetch:', 1), (u'@soldadocFCB:', 1), (u'to', 1), (u'veo', 1), (u'smh..', 1), (u'Habilitaci\xf3n', 1), (u'http://t.co/4cZsGzJZfG', 1), (u'algunos', 1), (u'quedarte', 1), (u'decide', 1), (u'@889BrilaFM', 1), (u'-Kun', 1), (u'http://t.co/JDCmuOIGPL', 1), (u'@Profe_k:', 1), (u'@CoquitaDeVidrio:', 1), (u'trajo', 1), (u'Ah\xed', 1), (u'leave', 1), (u'.....', 1), (u'Messi-Ag\xfcero.', 1), (u'\U0001f60d\u2764', 1), (u'Aguero.', 1), (u'Garay', 1), (u'galaxia', 1), (u'LAS', 1), (u'GOAT.', 1), (u'pase', 1), (u'M\u2026', 1), (u'http://t.co/RFPbk8E71b', 1), (u'asistencia', 1), (u'\u2014El', 1), (u's\xf3lo', 1), (u'\xa1GOOOOOOOOOOOOOOOOOOOOOOOOOL', 1), (u'tipo', 1), (u'http://t.co/LJmrNhmKE5', 1), (u'bastanete', 1), (u'saltan', 1), (u'Que', 1), (u'verdadera', 1), (u'QUE', 1), (u'learned', 1), (u'astucia', 1), (u'vengan', 1), (u'@L0UISPOTRO:', 1), (u'http://t.co/4KLvXZxd7D', 1), (u'Messi...', 1), (u'aunque', 1), (u'change', 1), (u'dice', 1), (u'd\xeda', 1), (u'43,', 1), (u'jodamos', 1), (u'L\xedo,', 1), (u'http://t.co/nAxwOtljdg', 1), (u'haberme', 1), (u'vale"', 1), (u'makes', 1), (u'@AlexZendejas8:', 1), (u'Aguero', 1), (u'argentina]', 1), (u'frase', 1), (u'cerrando', 1), (u'Dale', 1), (u'from', 1), (u'Chicharito', 1), (u'spacewalkwr', 1), (u'otros.', 1), (u'@prestico_ddd:', 1), (u'https://t.co/VpVfenlSGd', 1), (u'cierre', 1), (u'tajante:', 1), (u'vi,', 1), (u'espero', 1), (u'@HeernanGimenez', 1), (u'entra', 1), (u'heroe', 1), (u'merec\xeda', 1), (u'Gerardo', 1), (u'cuanto', 1), (u'@FootballFact101:', 1), (u'LOS', 1), (u'iba', 1), (u'@RiverettiSports:', 1), (u'Roman,', 1), (u'busca', 1), (u'can', 1), (u'cabeza', 1), (u'CARAS', 1), (u'https://t.co/9OtAfyoNBr', 1), (u'Le', 1), (u'empieza', 1), (u'YO', 1), (u'partido"', 1), (u'bien..', 1), (u'partido*', 1), (u'sociedad', 1), (u'Lord', 1), (u'Lay\xfan', 1), (u'cargando', 1), (u'Yo', 1), (u'#Genio', 1), (u'@pedrominguez_:', 1), (u'mas', 1), (u'@GarbariniNehuen', 1), (u'cancha.', 1), (u'ten\xe9s', 1), (u'juego.', 1), (u'Chapulin', 1), (u'calidad', 1), (u'lampara.', 1), (u'Mexico', 1), (u'@HumorAlFutbol:', 1), (u'su', 1), (u'think', 1), (u'q', 1), (u'si', 1), (u'no,', 1), (u'@elfernetsoy:', 1), (u'@otroHugoSanchez', 1), (u'LIO', 1), (u'Retweeted', 1), (u'soon', 1), (u'Mascherano,', 1), (u'@maria_enema:', 1), (u'@sebapizman:', 1), (u'jugando', 1), (u'la...', 1), (u',', 1), (u'vino,', 1), (u'empatado.', 1), (u'argentino', 1), (u'Piojo', 1), (u'argentina', 1), (u'#Dallas', 1), (u'moises,', 1), (u'good', 1), (u'#Gotze,', 1), (u'EVEN', 1), (u'http://t.co/tDVihBkjEY', 1), (u'caga', 1), (u'now', 1), (u'desastre', 1), (u'vez.', 1), (u'esto', 1), (u'pobre', 1), (u'perdiendo,', 1), (u'exquisita', 1), (u'http://t\u2026', 1), (u'Zabaleta', 1), (u'bueno', 1), (u'Nunca', 1), (u'entienden', 1), (u'year', 1), (u'trending', 1), (u'\U0001f525', 1), (u'poco', 1), (u'Martino.', 1), (u'cant\xf3', 1), (u'Dios', 1), (u'\U0001f61e', 1), (u'@aiticampos:', 1), (u'raz\xf3n.', 1), (u'propone', 1), (u'@argentina]', 1), (u'x', 1), (u'Batistuta', 1), (u'tienes', 1), (u'En', 1), (u'@velavictor:', 1), (u'49-56', 1), (u'ocurri\xf3', 1), (u'esperando', 1), (u'americanista', 1), (u'contaban', 1), (u'http://t.co/WWUIsQNYKD', 1), (u'mexicanos', 1), (u'http://t.co/6vubpnjzDW', 1), (u'http://t.co/5wQlBeMNVf', 1), (u'https://t.co/pPLfHUJ7yS', 1), (u'@BrianMontero9:', 1), (u'frot\xf3', 1), (u'relataba', 1), (u'titulares', 1), (u'Match:', 1), (u'contra', 1), (u'est\xe1s', 1), (u'IMAGINE', 1), (u'pancarta', 1), (u'f\xf3rmula,', 1), (u'genio!', 1), (u'putos', 1), (u'SCREAMED', 1), (u'Kun-Messi', 1), (u'diga', 1), (u'Colorado', 1), (u'est\xe1,', 1), (u'llevan', 1), (u'Alejandro', 1), (u'https://t.co/IBT9yALWFv', 1), (u'este', 1), (u'definici\xf3n', 1), (u'DE', 1), (u'Romero', 1), (u'golasooo', 1), (u'talking', 1), (u'socio', 1), (u'vamos', 1), (u'.l.', 1), (u'http://t.co/lCa6WMBE6r', 1), (u'hasta', 1), (u'Ag\xfcero-Messi', 1), (u'abt', 1), (u'dijeron', 1), (u'ortos', 1), (u'-', 1), (u'https://t.co/5dd\u2026', 1), (u'genio', 1), (u'Igual,', 1), (u'http://t.co/QyVZtK4YPl', 1), (u'hermoso.', 1), (u'http://t.co/9fevVWyvBS', 1), (u'sent\xed', 1), (u'7,', 1), (u'needlittlelove_', 1), (u'(@farffanntastico):', 1), (u'The', 1), (u'\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f\U0001f44f', 1), (u'obvio', 1), (u'@quintinLLP', 1), (u'http://t.co/sW0f7d7Lm2', 1), (u'malos', 1), (u'cambio', 1), (u'dos', 1), (u'cambia', 1), (u"Y'ALL", 1), (u'dijo', 1), (u'@QuiqueCano:', 1), (u'recuerdos', 1), (u'inspiro', 1), (u'Hay', 1), (u'odiaban', 1), (u'@FantasiaFutbol:', 1), (u'apareci\xf3.', 1), (u'"Messi', 1), (u'm\xe1s.', 1), (u'jugar', 1), (u'-Messi', 1), (u'Moi', 1), (u'8', 1), (u'Messi:', 1), (u'@fannyrvr:', 1), (u'T\xe9vez', 1), (u'Magia', 1), (u'Messi\U0001f60d', 1), (u'@TatianaLizar:', 1), (u'\U0001f64c', 1), (u'gol,', 1), (u'chab\xf3n', 1), (u'quiere.', 1), (u'@NoMemesFutbol:', 1), (u'quiere,', 1), (u'MEXICANOS', 1), (u'que,', 1), (u'verdad', 1), (u'anano!@Chava_lglesias', 1), (u'\xe9poca', 1), (u'Jajajaja.', 1), (u'sea', 1), (u'@rsvolpi:', 1), (u'@WeAreBARFans:', 1), (u'Kun...', 1), (u'Masche', 1), (u'Para', 1), (u'juego', 1), (u'http://t.co/LJBIFGanpN', 1), (u'"@chilakilleitor:', 1), (u'score', 1), (u'http://t.co/qgTWVhjXKu', 1), (u'@martindelp', 1), (u'solo', 1), (u'we', 1), (u'era', 1), (u'Argentina!', 1), (u'empataron', 1), (u'http://t.co/KfUlClTcSl', 1), (u'Sacaron', 1), (u'playera', 1), (u'last', 1), (u'Lavezzi', 1), (u'jugadas.', 1), (u'mamen,', 1), (u'empezaron', 1), (u'busc\xf3', 1), (u'\U0001f612', 1), (u'FUCCKKKK', 1), (u'gotze', 1), (u'Lionel.', 1), (u'Gracias', 1), (u'pasaba', 1), (u'messi,', 1), (u'COMO', 1), (u'@hernancaire:', 1), (u'gracias', 1), (u'\uffe3&gt;\uffe3', 1), (u'meti\xf3', 1), (u'festejo', 1), (u'sincero', 1), (u'would', 1), (u'\U0001f499\U0001f60d', 1), (u'vi', 1), (u'\U0001f60d', 1), (u'it', 1), (u'player', 1), (u'chingan.', 1), (u'par', 1), (u'parte', 1), (u'@FFuerteAlMedio:', 1), (u'parti\xf3', 1), (u'(sobretodo)', 1), (u'mel\xf3n', 1), (u'@ShiWantsTheC:', 1), (u'Of', 1), (u'9', 1), (u'Despertateeeeeeee.', 1), (u'Martino...', 1), (u'#MEXvARG', 1), (u'haga', 1), (u'Ve', 1), (u'@SoyMrFutbol:', 1), (u'\U0001f64f\U0001f64f\U0001f64f', 1), (u'It', 1), (u'know', 1), (u'indiscutida', 1), (u'pa\u2026', 1), (u'LOUD', 1), (u'boca!', 1), (u'@Cuenca__11:', 1), (u'De', 1), (u'Quieren', 1), (u'Messi-T\xe9vez.', 1), (u'mandado', 1), (u'JAJAJAJA', 1), (u'http://t.co/4C0t1hGHyf', 1), (u'http://t.co/LkQDmWzI11', 1), (u'cuatro', 1), (u'quiere', 1), (u'vida', 1), (u'had', 1), (u'#messi', 1), (u'@fanylopez24:', 1), (u'caminando,', 1), (u'arriba', 1), (u'perdi\xf3', 1), (u'crack', 1), (u"CAN'T", 1), (u'real', 1), (u'...', 1), (u'dos.', 1), (u'imponer', 1), (u'DICIENDO', 1), (u'Farffann', 1), (u'maduro,', 1), (u'Tucu', 1), (u'like', 1), (u'Selecci\xf3n:', 1), (u'https://t.co/d8rhxbiCIH', 1), (u'nose', 1), (u'faceta', 1), (u'Man', 1), (u'http://t.co/rIo9o1JkNT', 1), (u'@barcastuff:', 1), (u'D10S', 1), (u'Banegas', 1), (u'Rojo', 1), (u'cabe', 1), (u'Kun', 1), (u'2-2...he', 1), (u'armando', 1), (u'dice:', 1), (u'HOLY', 1), (u'\u26bd\ufe0f\U0001f44c', 1), (u'pues', 1), (u'Herrera', 1), (u'criticar', 1), (u'#VIDEO', 1), (u'Biglia', 1), (u'http://t.co/jpxbyK4aXs', 1), (u'be', 1), (u'obvio,', 1), (u'Guzman.', 1), (u'pidi\xe9ndole', 1), (u'Un', 1), (u'Gran', 1), (u'@scorpion2121:', 1), (u'Fran\u2026', 1), (u'pelotas', 1), (u'@_RiverPlateCarp:', 1), (u'regresar', 1), (u'buen\xedsimo,', 1), (u'misma', 1), (u'toma', 1), (u'@ChoVanian:', 1), (u'anterior', 1), (u'Mar\xeda', 1), (u'Cup', 1), (u'teniendo', 1), (u'@TomyGarcia', 1), (u'termina', 1), (u'banco', 1), (u'Andr\xe9s', 1), (u'canal', 1), (u'http://t.co/kzntJvndgU', 1), (u'@Messiboy5:', 1), (u'incre\xedble,', 1), (u'@FeerCasellaa:', 1), (u'prensa', 1), (u'muerto', 1), (u'SCORED', 1), (u'Senosiain.', 1), (u'haciendo', 1), (u'PAPA', 1), (u'mundo,', 1), (u'but', 1), (u'@littlefaceok', 1), (u'https://t.co/xLBBNUeQH5', 1), (u'tengan', 1), (u'http://t.co/IwAPYEzYul', 1), (u'LEO', 1), (u'Vos', 1), (u'similar', 1), (u'final.', 1), (u'bien.', 1), (u'Al', 1), (u'Dobaben.', 1), (u'@Galvaque:', 1), (u'pedestal', 1), (u'empato', 1), (u'ni', 1), (u'G\xf6tze\U0001f602', 1), (u'Bendtner', 1), (u'WHEN', 1), (u'Mario', 1), (u'http://t.co/3wJCBYOpSf', 1), (u'5', 1), (u'special', 1), (u'recordar', 1), (u'parecido', 1), (u'Maria', 1), (u'@TIIIIIITI', 1), (u'@LucasDoomine:', 1), (u'HOW', 1), (u'Goetze.', 1), (u'mirando', 1), (u'dicha', 1), (u'coraz\xf3n', 1), (u'Si', 1), (u'celebraci\xf3n', 1), (u'todav\xeda', 1), (u'oportunidades', 1), (u"she's", 1), (u'http://t.co/WwqK3kHNMD', 1), (u'\xa1NO!', 1), (u'*el', 1)]
+-------+-------+
| Words | Count |
+-------+-------+
|   RT  |   63  |
| Messi |   60  |
|   de  |   49  |
|   a   |   34  |
|   la  |   30  |
+-------+-------+

Google +

La API_KEY la puenden obtener en este link


In [19]:
import apiclient.discovery
import httplib2

In [20]:
API_KEY = '' 

service = apiclient.discovery.build('plus', 'v1', http=httplib2.Http(), 
                                    developerKey=API_KEY)

people_feed = service.people().search(query='Guido Van Rossum').execute()

print json.dumps(people_feed['items'], indent=1)


[
 {
  "kind": "plus#person", 
  "displayName": "Guido van Rossum", 
  "url": "https://plus.google.com/115212051037621986145", 
  "image": {
   "url": "https://lh4.googleusercontent.com/-sTmobuvrAJQ/AAAAAAAAAAI/AAAAAAAANcc/_5W7tl0A9mg/photo.jpg?sz=50"
  }, 
  "etag": "\"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/V5bZtUTOwr6KDRoKWOFjvIW9x40\"", 
  "id": "115212051037621986145", 
  "objectType": "person"
 }, 
 {
  "kind": "plus#person", 
  "displayName": "Guido Van Rossum", 
  "url": "https://plus.google.com/110131525778390520459", 
  "image": {
   "url": "https://lh4.googleusercontent.com/-vmSdDDXXcZE/AAAAAAAAAAI/AAAAAAAAAB0/l9UlWXEzg5U/photo.jpg?sz=50"
  }, 
  "etag": "\"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/uLNpfHCy3EsfECGI_ct__HidG-4\"", 
  "id": "110131525778390520459", 
  "objectType": "person"
 }, 
 {
  "kind": "plus#person", 
  "displayName": "Guido Van Rossum", 
  "url": "https://plus.google.com/108839335967876049086", 
  "image": {
   "url": "https://lh3.googleusercontent.com/-qfo2t9DW1co/AAAAAAAAAAI/AAAAAAAAAAA/TFb1WLyldPA/photo.jpg?sz=50"
  }, 
  "etag": "\"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/02BUp0qzhR382-U2MlsjUh-HEZc\"", 
  "id": "108839335967876049086", 
  "objectType": "person"
 }, 
 {
  "kind": "plus#person", 
  "displayName": "Guido Van Rossum", 
  "url": "https://plus.google.com/108672939653017535226", 
  "image": {
   "url": "https://lh3.googleusercontent.com/-Itqa8FSX1E4/AAAAAAAAAAI/AAAAAAAAAAA/Y0n9393F2RA/photo.jpg?sz=50"
  }, 
  "etag": "\"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/02VI965YFMbwwBoge-0FnjOMbmo\"", 
  "id": "108672939653017535226", 
  "objectType": "person"
 }, 
 {
  "kind": "plus#person", 
  "displayName": "guido van rossum", 
  "url": "https://plus.google.com/115573334242103875946", 
  "image": {
   "url": "https://lh3.googleusercontent.com/-QAu2cWz0yIQ/AAAAAAAAAAI/AAAAAAAAAAA/94ISgORdXCs/photo.jpg?sz=50"
  }, 
  "etag": "\"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/ka_GwN4kSLx8ONlPV8UUonWlR74\"", 
  "id": "115573334242103875946", 
  "objectType": "person"
 }, 
 {
  "kind": "plus#person", 
  "displayName": "Guido Van Rossum", 
  "url": "https://plus.google.com/108957707746544410365", 
  "image": {
   "url": "https://lh5.googleusercontent.com/-f-FXIIELbx0/AAAAAAAAAAI/AAAAAAAAACY/NWB0Dj4K_r8/photo.jpg?sz=50"
  }, 
  "etag": "\"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/W4Kla3intYJVWukxeYUx45h1Wjw\"", 
  "id": "108957707746544410365", 
  "objectType": "person"
 }, 
 {
  "kind": "plus#person", 
  "displayName": "Guido Van Rossem", 
  "url": "https://plus.google.com/+GuidoVanRossem", 
  "image": {
   "url": "https://lh3.googleusercontent.com/-unIBa1EX7MA/AAAAAAAAAAI/AAAAAAAABVs/8n-5GtTDY6A/photo.jpg?sz=50"
  }, 
  "etag": "\"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/w5Hrct-47MsAPcwcz62x_36KauQ\"", 
  "id": "102782280918688870442", 
  "objectType": "person"
 }, 
 {
  "kind": "plus#person", 
  "displayName": "PROGRAMING PYTHON", 
  "url": "https://plus.google.com/110499120373543804810", 
  "image": {
   "url": "https://lh3.googleusercontent.com/-G2FWUSmlZu4/AAAAAAAAAAI/AAAAAAAAAAA/j3RSD_BNUZU/photo.jpg?sz=50"
  }, 
  "etag": "\"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/hMIEWb1qyCYh4_Uq_O3B79fmUsQ\"", 
  "id": "110499120373543804810", 
  "objectType": "page"
 }, 
 {
  "kind": "plus#person", 
  "displayName": "getidan", 
  "url": "https://plus.google.com/104800456003226472037", 
  "image": {
   "url": "https://lh5.googleusercontent.com/-LCu_67CuSTo/AAAAAAAAAAI/AAAAAAAAALU/MFRsQRICd2c/photo.jpg?sz=50"
  }, 
  "etag": "\"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/HB53kl0nMT8-uJ3uh8z3MuKXrQM\"", 
  "id": "104800456003226472037", 
  "objectType": "page"
 }
]

In [21]:
map(lambda i: people_feed['items'][i]['displayName'], range(len(people_feed['items'])))


Out[21]:
[u'Guido van Rossum',
 u'Guido Van Rossum',
 u'Guido Van Rossum',
 u'Guido Van Rossum',
 u'guido van rossum',
 u'Guido Van Rossum',
 u'Guido Van Rossem',
 u'PROGRAMING PYTHON',
 u'getidan']

In [25]:
from IPython.display import Image

Image(url =  people_feed['items'][0]['image']['url'])


Out[25]:

In [26]:
id_guido = people_feed['items'][0]['id']

In [27]:
activity_feed = service.activities().list(
  userId= id_guido,
  collection='public',
  maxResults='10' # Max allowed per API
).execute()

activity_feed


Out[27]:
{u'etag': u'"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/T5Qjw7eboxs8eTdUuDFTKu2V3L0"',
 u'items': [{u'access': {u'description': u'Public',
    u'items': [{u'type': u'public'}],
    u'kind': u'plus#acl'},
   u'actor': {u'displayName': u'Guido van Rossum',
    u'id': u'115212051037621986145',
    u'image': {u'url': u'https://lh4.googleusercontent.com/-sTmobuvrAJQ/AAAAAAAAAAI/AAAAAAAANcc/_5W7tl0A9mg/photo.jpg?sz=50'},
    u'url': u'https://plus.google.com/115212051037621986145',
    u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
   u'etag': u'"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/Kp4S0XPid7pLhtDNPmm85_MP6t4"',
   u'id': u'z12fd5uyexzfxlowb04cfph4co2xuf2a12s',
   u'kind': u'plus#activity',
   u'object': {u'actor': {u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
    u'attachments': [{u'content': u'Help support STANBRIDGE ACADEMY on Razoo! Donate or click "Share" below to spread the word.',
      u'displayName': u'STANBRIDGE ACADEMY',
      u'fullImage': {u'type': u'image/jpeg',
       u'url': u'http://d1byvvo791gp2e.cloudfront.net/public/assets/media/images/000/424/906/images/size_120x120_IMG_0549.png?1398880045'},
      u'image': {u'height': 120,
       u'type': u'image/jpeg',
       u'url': u'https://lh5.googleusercontent.com/proxy/wdntb0m8Ozp6hzeTvuX3p1CUN2bUcmdlU6lijMavwtucVfHd_Cas6MpNqPKtL6IGmdKQvCNI5vp-u4SHJt_Vb1ujgTnnqesjzVfN--NEdSx4ELBljdt8kjp_f4x_cvybFlaOdgDrFARZKFDTgPUW5prua0keoxDcvB5PiS66LTwW75-FfqDk=w120-h120',
       u'width': 120},
      u'objectType': u'article',
      u'url': u'http://svgives.razoo.com/story/Stanbridge-Academy'}],
    u'content': u'My son goes to school here. I know many of those kids.\ufeff',
    u'objectType': u'note',
    u'plusoners': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12fd5uyexzfxlowb04cfph4co2xuf2a12s/people/plusoners',
     u'totalItems': 39},
    u'replies': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12fd5uyexzfxlowb04cfph4co2xuf2a12s/comments',
     u'totalItems': 8},
    u'resharers': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12fd5uyexzfxlowb04cfph4co2xuf2a12s/people/resharers',
     u'totalItems': 0},
    u'url': u'https://plus.google.com/115212051037621986145/posts/Ph1iJLMpTQ1'},
   u'provider': {u'title': u'Google+'},
   u'published': u'2014-05-06T16:07:23.175Z',
   u'title': u'My son goes to school here. I know many of those kids.',
   u'updated': u'2014-05-06T16:07:23.175Z',
   u'url': u'https://plus.google.com/115212051037621986145/posts/Ph1iJLMpTQ1',
   u'verb': u'post'},
  {u'access': {u'description': u'Public',
    u'items': [{u'type': u'public'}],
    u'kind': u'plus#acl'},
   u'actor': {u'displayName': u'Guido van Rossum',
    u'id': u'115212051037621986145',
    u'image': {u'url': u'https://lh4.googleusercontent.com/-sTmobuvrAJQ/AAAAAAAAAAI/AAAAAAAANcc/_5W7tl0A9mg/photo.jpg?sz=50'},
    u'url': u'https://plus.google.com/115212051037621986145',
    u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
   u'etag': u'"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/S85sVvgM5nUDmWIFV0g2VCGxuJ8"',
   u'id': u'z13hu1uwlrb0zr5xv04cfph4co2xuf2a12s',
   u'kind': u'plus#activity',
   u'object': {u'actor': {u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
    u'attachments': [{u'content': u'Before you learn to code, think about what you want to code Knowing how to code is mostly about building things, and the\u2026',
      u'displayName': u'Things I Wish Someone Had Told Me When I Was Learning How to Code',
      u'fullImage': {u'type': u'image/jpeg',
       u'url': u'https://dnqgz544uhbo8.cloudfront.net/_/fp/img/default-preview-image.IsBK38jFAJBlWifMLO4z9g.png'},
      u'image': {u'height': 120,
       u'type': u'image/jpeg',
       u'url': u'https://lh4.googleusercontent.com/proxy/_zWeYANsvidB6bWd7g4aERBVG1u6mEjrpZtq8pAWazGtOiA35MLOYroGwNMm-iH7btZWw-0lJqqDysMVjwMmLxPsvBvfxOPDFtMF96LpmkScZjPVXZpbrdkufc5knd4n5mGYpM6HwKpO7bVurNE=w120-h120',
       u'width': 120},
      u'objectType': u'article',
      u'url': u'https://medium.com/learning-to-code/565fc9dcb329'}],
    u'content': u'I was so impressed with this I am posting it to G+ <b>and</b> tweeting it. <a href="https://medium.com/learning-to-code/565fc9dcb329">https://medium.com/learning-to-code/565fc9dcb329</a>\ufeff',
    u'objectType': u'note',
    u'plusoners': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z13hu1uwlrb0zr5xv04cfph4co2xuf2a12s/people/plusoners',
     u'totalItems': 438},
    u'replies': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z13hu1uwlrb0zr5xv04cfph4co2xuf2a12s/comments',
     u'totalItems': 18},
    u'resharers': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z13hu1uwlrb0zr5xv04cfph4co2xuf2a12s/people/resharers',
     u'totalItems': 260},
    u'url': u'https://plus.google.com/115212051037621986145/posts/YJx8j9k8vPc'},
   u'provider': {u'title': u'Google+'},
   u'published': u'2013-11-25T03:22:24.200Z',
   u'title': u'I was so impressed with this I am posting it to G+ and tweeting it. https://medium.com/learning-to-code...',
   u'updated': u'2013-11-25T03:22:24.200Z',
   u'url': u'https://plus.google.com/115212051037621986145/posts/YJx8j9k8vPc',
   u'verb': u'post'},
  {u'access': {u'description': u'Public',
    u'items': [{u'type': u'public'}],
    u'kind': u'plus#acl'},
   u'actor': {u'displayName': u'Guido van Rossum',
    u'id': u'115212051037621986145',
    u'image': {u'url': u'https://lh4.googleusercontent.com/-sTmobuvrAJQ/AAAAAAAAAAI/AAAAAAAANcc/_5W7tl0A9mg/photo.jpg?sz=50'},
    u'url': u'https://plus.google.com/115212051037621986145',
    u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
   u'etag': u'"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/pxq84n5uuxHDd7LSNQAnhaO2F9I"',
   u'id': u'z12iwnwoyxqeezpfv22xfd250rimslkcq',
   u'kind': u'plus#activity',
   u'object': {u'actor': {u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
    u'attachments': [{u'content': u'[Docs] [txt|pdf] [draft-josefsson-b...] [Diff1] [Diff2] Obsoleted by: 4648 INFORMATIONAL Network Working Group S. Josefsson, Ed. Request for Comments: 3548 July 2003 Category: Informational The Base16, Base32, and Base64 Data Encodings Status of this Memo This memo provides information for the ...',
      u'displayName': u'RFC 3548 - The Base16, Base32, and Base64 Data Encodings',
      u'objectType': u'article',
      u'url': u'http://tools.ietf.org/html/rfc3548'}],
    u'content': u'In the memory lane department: Doing some research on Base64 led me to RFC 3548 (<a href="http://tools.ietf.org/html/rfc3548">http://tools.ietf.org/html/rfc3548</a>) which references as [8] a post by Zooko; however the link seems to go to the wrong post. Viewing the month of those archives (<a href="http://zgp.org/pipermail/p2p-hackers/2001-September/date.html">http://zgp.org/pipermail/p2p-hackers/2001-September/date.html</a>) it&#39;s like all the usual suspects: Bram Cohen, <span class="proflinkWrapper"><span class="proflinkPrefix">+</span><a class="proflink" href="https://plus.google.com/114757086782429944364" oid="114757086782429944364">Gregory P. Smith</a></span>, <span class="proflinkWrapper"><span class="proflinkPrefix">+</span><a class="proflink" href="https://plus.google.com/108313527900507320366" oid="108313527900507320366">Zooko Wilcox-O&#39;Hearn</a></span>...\ufeff',
    u'objectType': u'note',
    u'plusoners': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12iwnwoyxqeezpfv22xfd250rimslkcq/people/plusoners',
     u'totalItems': 34},
    u'replies': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12iwnwoyxqeezpfv22xfd250rimslkcq/comments',
     u'totalItems': 13},
    u'resharers': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12iwnwoyxqeezpfv22xfd250rimslkcq/people/resharers',
     u'totalItems': 7},
    u'url': u'https://plus.google.com/115212051037621986145/posts/Mgj1Lwc1Lrg'},
   u'provider': {u'title': u'Google+'},
   u'published': u'2013-11-19T22:08:37.866Z',
   u'title': u'In the memory lane department: Doing some research on Base64 led me to RFC 3548 (http://tools.ietf.org...',
   u'updated': u'2013-11-19T22:08:37.866Z',
   u'url': u'https://plus.google.com/115212051037621986145/posts/Mgj1Lwc1Lrg',
   u'verb': u'post'},
  {u'access': {u'description': u'Public',
    u'items': [{u'type': u'public'}],
    u'kind': u'plus#acl'},
   u'actor': {u'displayName': u'Guido van Rossum',
    u'id': u'115212051037621986145',
    u'image': {u'url': u'https://lh4.googleusercontent.com/-sTmobuvrAJQ/AAAAAAAAAAI/AAAAAAAANcc/_5W7tl0A9mg/photo.jpg?sz=50'},
    u'url': u'https://plus.google.com/115212051037621986145',
    u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
   u'etag': u'"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/ztwZfn2isKu2pa5V9IhCbSwDriM"',
   u'id': u'z13aenuanmmlydxvj22xfd250rimslkcq',
   u'kind': u'plus#activity',
   u'object': {u'actor': {u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
    u'content': u'I just love the flowery language in this spam comment that Blogger intercepted for me:<br /><br />&quot;Its such as you learn my thoughts! You seem to grasp so much approximately this, such as you wrote the ebook in it or something. I think that you simply can do with some% to force the massage house a bit, however other than that this is magnificent blog. An excellent read. I will certainly be back.&quot; [link suppressed]\ufeff',
    u'objectType': u'note',
    u'plusoners': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z13aenuanmmlydxvj22xfd250rimslkcq/people/plusoners',
     u'totalItems': 56},
    u'replies': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z13aenuanmmlydxvj22xfd250rimslkcq/comments',
     u'totalItems': 11},
    u'resharers': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z13aenuanmmlydxvj22xfd250rimslkcq/people/resharers',
     u'totalItems': 1},
    u'url': u'https://plus.google.com/115212051037621986145/posts/KivDeQF8gfV'},
   u'provider': {u'title': u'Google+'},
   u'published': u'2013-11-19T15:47:04.051Z',
   u'title': u'I just love the flowery language in this spam comment that Blogger intercepted for me:\n\n"Its such as...',
   u'updated': u'2013-11-19T15:47:04.051Z',
   u'url': u'https://plus.google.com/115212051037621986145/posts/KivDeQF8gfV',
   u'verb': u'post'},
  {u'access': {u'description': u'Public',
    u'items': [{u'type': u'public'}],
    u'kind': u'plus#acl'},
   u'actor': {u'displayName': u'Guido van Rossum',
    u'id': u'115212051037621986145',
    u'image': {u'url': u'https://lh4.googleusercontent.com/-sTmobuvrAJQ/AAAAAAAAAAI/AAAAAAAANcc/_5W7tl0A9mg/photo.jpg?sz=50'},
    u'url': u'https://plus.google.com/115212051037621986145',
    u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
   u'etag': u'"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/HYLBW7ezNswxHymVxu9MSLNqEpg"',
   u'id': u'z13evl5h2xzuwb25w04cfph4co2xuf2a12s',
   u'kind': u'plus#activity',
   u'object': {u'actor': {u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
    u'content': u'I was asked on Twitter why Python uses 0-based indexing, with a link to a new (fascinating) post on the subject (<a href="http://exple.tive.org/blarg/2013/10/22/citation-needed/">http://exple.tive.org/blarg/2013/10/22/citation-needed/</a>). I recall thinking about it a lot; ABC, one of Python&#39;s predecessors, used 1-based indexing, while C, the other big influence, used 0-based. My first few programming languages (Algol, Fortran, Pascal) used 1-based or variable-based. I think that one of the issues that helped me decide was slice notation.<br /><br />Let&#39;s first look at use cases. Probably the most common use cases for slicing are &quot;get the first n items&quot; and &quot;get the next n items starting at i&quot; (the first is a special case of that for i == the first index). It would be nice if both of these could be expressed as without awkward +1 or -1 compensations.<br /><br />Using 0-based indexing, half-open intervals, and suitable defaults (as Python ended up having), they are beautiful: a[:n] and a[i:i+n]; the former is long for a[0:n].<br /><br />Using 1-based indexing, if you want a[:n] to mean the first n elements, you either have to use closed intervals or you can use a slice notation that uses start and length as the slice parameters. Using half-open intervals just isn&#39;t very elegant when combined with 1-based indexing. Using closed intervals, you&#39;d have to write a[i:i+n-1] for the n items starting at i. So perhaps using the slice length would be more elegant with 1-based indexing? Then you could write a[i:n]. And this is in fact what ABC did -- it used a different notation so you could write a@i|n.(See <a href="http://homepages.cwi.nl/~steven/abc/qr.html#EXPRESSIONS">http://homepages.cwi.nl/~steven/abc/qr.html#EXPRESSIONS</a>.)<br /><br />But how does the index:length convention work out for other use cases? TBH this is where my memory gets fuzzy, but I think I was swayed by the elegance of half-open intervals. Especially the invariant that when two slices are adjacent, the first slice&#39;s end index is the second slice&#39;s start index is just too beautiful to ignore. For example, suppose you split a string into three parts at indices i and j -- the parts would be a[:i], a[i:j], and a[j:].<br /><br />So that&#39;s why Python uses 0-based indexing.\ufeff',
    u'objectType': u'note',
    u'plusoners': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z13evl5h2xzuwb25w04cfph4co2xuf2a12s/people/plusoners',
     u'totalItems': 740},
    u'replies': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z13evl5h2xzuwb25w04cfph4co2xuf2a12s/comments',
     u'totalItems': 20},
    u'resharers': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z13evl5h2xzuwb25w04cfph4co2xuf2a12s/people/resharers',
     u'totalItems': 229},
    u'url': u'https://plus.google.com/115212051037621986145/posts/YTUxbXYZyfi'},
   u'provider': {u'title': u'Google+'},
   u'published': u'2013-10-23T20:36:33.605Z',
   u'title': u'I was asked on Twitter why Python uses 0-based indexing, with a link to a new (fascinating) post on ...',
   u'updated': u'2013-10-23T20:36:33.605Z',
   u'url': u'https://plus.google.com/115212051037621986145/posts/YTUxbXYZyfi',
   u'verb': u'post'},
  {u'access': {u'description': u'Public',
    u'items': [{u'type': u'public'}],
    u'kind': u'plus#acl'},
   u'actor': {u'displayName': u'Guido van Rossum',
    u'id': u'115212051037621986145',
    u'image': {u'url': u'https://lh4.googleusercontent.com/-sTmobuvrAJQ/AAAAAAAAAAI/AAAAAAAANcc/_5W7tl0A9mg/photo.jpg?sz=50'},
    u'url': u'https://plus.google.com/115212051037621986145',
    u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
   u'etag': u'"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/TPyTrw2ZvNUH20JjRAdF_oV9xK0"',
   u'id': u'z12tebdhso35e1d4k04cfph4co2xuf2a12s',
   u'kind': u'plus#activity',
   u'object': {u'actor': {u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
    u'content': u'Do <b>not</b> send me email like this:<br /><br />&quot;&quot;&quot;<br />Hi Guido,<br />\xa0<br />I came across your resume in a Google web search. You seem to have an awesome expertise on Python. I would be glad if you can reply my email and let me know your interest and availability.<br />\xa0<br />\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..<br />Our client immediately needs a PYTHON Developers at its location in <b>*</b>, NJ. Below are the job details. If interested and available, kindly fwd me your updated resume along with the expected rate and the availability.<br /><br />[...]<br />&quot;&quot;&quot;<br /><br />I might reply like this:<br /><br />&quot;&quot;&quot;<br />I&#39;m not interested and not available.<br />&quot;&quot;&quot;\ufeff',
    u'objectType': u'note',
    u'plusoners': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12tebdhso35e1d4k04cfph4co2xuf2a12s/people/plusoners',
     u'totalItems': 1807},
    u'replies': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12tebdhso35e1d4k04cfph4co2xuf2a12s/comments',
     u'totalItems': 54},
    u'resharers': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12tebdhso35e1d4k04cfph4co2xuf2a12s/people/resharers',
     u'totalItems': 589},
    u'url': u'https://plus.google.com/115212051037621986145/posts/R8jEVrobbRj'},
   u'provider': {u'title': u'Google+'},
   u'published': u'2013-09-18T20:32:32.876Z',
   u'title': u'Do not send me email like this:\n\n"""\nHi Guido,\n\nI came across your resume in a Google web search. You...',
   u'updated': u'2013-09-18T20:32:32.876Z',
   u'url': u'https://plus.google.com/115212051037621986145/posts/R8jEVrobbRj',
   u'verb': u'post'},
  {u'access': {u'description': u'Public',
    u'items': [{u'type': u'public'}],
    u'kind': u'plus#acl'},
   u'actor': {u'displayName': u'Guido van Rossum',
    u'id': u'115212051037621986145',
    u'image': {u'url': u'https://lh4.googleusercontent.com/-sTmobuvrAJQ/AAAAAAAAAAI/AAAAAAAANcc/_5W7tl0A9mg/photo.jpg?sz=50'},
    u'url': u'https://plus.google.com/115212051037621986145',
    u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
   u'etag': u'"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/LNq44n2QGaNqPtgkBynwy45rPYw"',
   u'id': u'z12os3ui3l2vure5s04cfph4co2xuf2a12s',
   u'kind': u'plus#activity',
   u'object': {u'actor': {u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
    u'attachments': [{u'content': u"DBX is coming! Here's why we're so excited for our first developer conference:\nhttp://ow.ly/m9PBl",
      u'displayName': u"Dropbox - DBX is coming! Here's why we're so excited for... | Facebook",
      u'objectType': u'article',
      u'url': u'https://www.facebook.com/Dropbox/posts/10151761640691756'}],
    u'content': u'Dropbox developer conference coming up! July 9, Fort Mason, San Francisco. <a href="https://www.facebook.com/Dropbox/posts/10151761640691756">https://www.facebook.com/Dropbox/posts/10151761640691756</a>\ufeff',
    u'objectType': u'note',
    u'plusoners': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12os3ui3l2vure5s04cfph4co2xuf2a12s/people/plusoners',
     u'totalItems': 64},
    u'replies': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12os3ui3l2vure5s04cfph4co2xuf2a12s/comments',
     u'totalItems': 3},
    u'resharers': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12os3ui3l2vure5s04cfph4co2xuf2a12s/people/resharers',
     u'totalItems': 7},
    u'url': u'https://plus.google.com/115212051037621986145/posts/Xq66WcdPQ5v'},
   u'provider': {u'title': u'Google+'},
   u'published': u'2013-06-18T20:12:10.161Z',
   u'title': u'Dropbox developer conference coming up! July 9, Fort Mason, San Francisco. https://www.facebook.com/...',
   u'updated': u'2013-06-18T20:12:10.161Z',
   u'url': u'https://plus.google.com/115212051037621986145/posts/Xq66WcdPQ5v',
   u'verb': u'post'},
  {u'access': {u'description': u'Public',
    u'items': [{u'type': u'public'}],
    u'kind': u'plus#acl'},
   u'actor': {u'displayName': u'Guido van Rossum',
    u'id': u'115212051037621986145',
    u'image': {u'url': u'https://lh4.googleusercontent.com/-sTmobuvrAJQ/AAAAAAAAAAI/AAAAAAAANcc/_5W7tl0A9mg/photo.jpg?sz=50'},
    u'url': u'https://plus.google.com/115212051037621986145',
    u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
   u'etag': u'"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/L5PPcLBW7lcWK4pYe_W3lJSgOR0"',
   u'id': u'z12kjvlxflessttdj22xfd250rimslkcq',
   u'kind': u'plus#activity',
   u'object': {u'actor': {u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
    u'content': u'I am at my wits&#39; end. In Office 2011 on the Mac, specifically Powerpoint, how do I turn off the automatic substitution of a smiley graphic when I type &quot;:-)&quot; ? I have turned off every single option under AutoCorrect and it still does this. :-(\ufeff',
    u'objectType': u'note',
    u'plusoners': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12kjvlxflessttdj22xfd250rimslkcq/people/plusoners',
     u'totalItems': 47},
    u'replies': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12kjvlxflessttdj22xfd250rimslkcq/comments',
     u'totalItems': 12},
    u'resharers': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12kjvlxflessttdj22xfd250rimslkcq/people/resharers',
     u'totalItems': 3},
    u'url': u'https://plus.google.com/115212051037621986145/posts/8zd2PQ5Rw8K'},
   u'provider': {u'title': u'Google+'},
   u'published': u'2013-03-13T04:27:40.883Z',
   u'title': u"I am at my wits' end. In Office 2011 on the Mac, specifically Powerpoint, how do I turn off the automatic...",
   u'updated': u'2013-03-13T04:27:40.883Z',
   u'url': u'https://plus.google.com/115212051037621986145/posts/8zd2PQ5Rw8K',
   u'verb': u'post'},
  {u'access': {u'description': u'Public',
    u'items': [{u'type': u'public'}],
    u'kind': u'plus#acl'},
   u'actor': {u'displayName': u'Guido van Rossum',
    u'id': u'115212051037621986145',
    u'image': {u'url': u'https://lh4.googleusercontent.com/-sTmobuvrAJQ/AAAAAAAAAAI/AAAAAAAANcc/_5W7tl0A9mg/photo.jpg?sz=50'},
    u'url': u'https://plus.google.com/115212051037621986145',
    u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
   u'etag': u'"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/Knb12OWzKT1UqETmfZR-oRRftCw"',
   u'id': u'z13dwfs5gxfuznin322xfd250rimslkcq',
   u'kind': u'plus#activity',
   u'object': {u'actor': {u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
    u'content': u'Bad user experience with Google wallet and Google apis console: getting monthly bills for $0.00. Worse user experience: being threatened with suspension of the account when the credit card expires.\ufeff',
    u'objectType': u'note',
    u'plusoners': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z13dwfs5gxfuznin322xfd250rimslkcq/people/plusoners',
     u'totalItems': 135},
    u'replies': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z13dwfs5gxfuznin322xfd250rimslkcq/comments',
     u'totalItems': 28},
    u'resharers': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z13dwfs5gxfuznin322xfd250rimslkcq/people/resharers',
     u'totalItems': 10},
    u'url': u'https://plus.google.com/115212051037621986145/posts/HdtjyGANXZc'},
   u'provider': {u'title': u'Google+'},
   u'published': u'2013-03-09T00:51:27.598Z',
   u'title': u'Bad user experience with Google wallet and Google apis console: getting monthly bills for $0.00. Worse...',
   u'updated': u'2013-03-09T00:51:27.598Z',
   u'url': u'https://plus.google.com/115212051037621986145/posts/HdtjyGANXZc',
   u'verb': u'post'},
  {u'access': {u'description': u'Public',
    u'items': [{u'type': u'public'}],
    u'kind': u'plus#acl'},
   u'actor': {u'displayName': u'Guido van Rossum',
    u'id': u'115212051037621986145',
    u'image': {u'url': u'https://lh4.googleusercontent.com/-sTmobuvrAJQ/AAAAAAAAAAI/AAAAAAAANcc/_5W7tl0A9mg/photo.jpg?sz=50'},
    u'url': u'https://plus.google.com/115212051037621986145',
    u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
   u'etag': u'"gLJf7LwN3wOpLHXk4IeQ9ES9mEc/9QT-XwSd2sKPWvj6AILAEXaY_zU"',
   u'id': u'z12iz3kw5xftujp4y04cfph4co2xuf2a12s',
   u'kind': u'plus#activity',
   u'object': {u'actor': {u'verification': {u'adHocVerified': u'UNKNOWN_VERIFICATION_STATUS'}},
    u'content': u'OH on python-dev: &quot;This has come up before. \xa0Classes have metaclasses (and <i>_prepare_</i>). Modules have loaders. \xa0Poor, poor functions. \xa0Because of the same concerns you&#39;ve already expressed regarding the criticality of function performance, they miss out on all sorts of fun--inside their highly optimized box looking out at the other types showing off their cool new features all the time. It just isn&#39;t fair. :)&quot;\ufeff',
    u'objectType': u'note',
    u'plusoners': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12iz3kw5xftujp4y04cfph4co2xuf2a12s/people/plusoners',
     u'totalItems': 48},
    u'replies': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12iz3kw5xftujp4y04cfph4co2xuf2a12s/comments',
     u'totalItems': 10},
    u'resharers': {u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12iz3kw5xftujp4y04cfph4co2xuf2a12s/people/resharers',
     u'totalItems': 2},
    u'url': u'https://plus.google.com/115212051037621986145/posts/TYBuQwcFrHz'},
   u'provider': {u'title': u'Google+'},
   u'published': u'2013-02-28T22:23:08.839Z',
   u'title': u'OH on python-dev: "This has come up before. \xa0Classes have metaclasses (and _prepare_). Modules have ...',
   u'updated': u'2013-02-28T22:23:08.839Z',
   u'url': u'https://plus.google.com/115212051037621986145/posts/TYBuQwcFrHz',
   u'verb': u'post'}],
 u'kind': u'plus#activityFeed',
 u'nextPageToken': u'Cg0Q1Ouat5TpxwIgACgBEhQIABDYoOiL15e-Ahitt-6uhdq1AhgCIAoo0Z2Zr4_uvOLOAQ',
 u'title': u'Google+ List of Activities for Collection PUBLIC',
 u'updated': u'2014-05-06T16:07:23.175Z'}

Cunatos +1 recibio la primera publicación .. cual es su título?


In [28]:
activity_feed['items'][0]['title']


Out[28]:
u'My son goes to school here. I know many of those kids.'

In [29]:
activity_feed['items'][0]['object']['plusoners']


Out[29]:
{u'selfLink': u'https://www.googleapis.com/plus/v1/activities/z12fd5uyexzfxlowb04cfph4co2xuf2a12s/people/plusoners',
 u'totalItems': 39}

In [31]:
activity_feed['items'][0]['object']['replies']['totalItems']


Out[31]:
8

Tomando datos de paginas web

Datos de feeds


In [33]:
import feedparser

In [34]:
fp = feedparser.parse('http://www.cb.uu.se/~cris/blog/index.php/feed')

In [35]:
map(lambda e: e.title, fp.entries)


Out[35]:
[u'The curse of the big table',
 u'No, that\u2019s not a Gaussian filter',
 u'Computer vision is hard!',
 u'Proper counting',
 u'DIPimage 2.6 released',
 u'On interpolation',
 u'DIPimage 2.5.1 released',
 u'Automated image-based diagnosis',
 u'Mathematical Morphology and colour images',
 u'How did this get published?']

In [36]:
fp.entries[4].summary


Out[36]:
u'Today we released version 2.6 of DIPimage and DIPlib. The change list is rather short. There are two items that I think are important: 1) We fixed a bug that caused an unnecessary copy of the output image(s) in the DIPlib-MEX interface, slowing down functions especially for large images. 2) We introduced a new setting [&#8230;]'

In [ ]: