Tweet Hash Create

Script to create hashtag for twitter tweeting

Code for twitter bot. I want to feed it an api of twitter hash tags to tweet. This list could have when to start/stop tweeting the hashtag.

Example

{'Hashtag' : 'kiwipycon', 'description' : 'NZ Python lang conference', 'starttweet' : 'datetostarttweeting', 'stoptweet' : 'datetostoptweeting', 'active' : True, 'similarhashtags' : 'pythonic'}

Anything missing?

When was the last tweet with that hash tag sent.

Get recent tweets/users with that hashtag and filter OTHER hashtags out of them


In [ ]:


In [10]:
import twitter

In [11]:
from TwitterFollowBot import TwitterBot

In [12]:
wcm_bot = TwitterBot('/home/wcmckee/Downloads/wcmtweet/config.txt')


Warning: Your Twitter follower sync files are more than a day old. It is highly recommended that you sync them by calling sync_follows() before continuing.

In [ ]:


In [1]:
import json
import arrow

In [2]:
curtim = arrow.now()

In [4]:
str(curtim.datetime)


Out[4]:
'2015-10-25 22:35:26.881629+13:00'

In [46]:
whathashtag = input('Add what hashtag? ')


Add what hashtag? pyconie

In [47]:
if '#' in whathashtag:
    pass
else:
    whathashtag = ('#' + whathashtag)

In [48]:
whathashtag


Out[48]:
'#pyconie'

In [54]:
wcmbotsea = wcm_bot.search_tweets(whathashtag, count= 50)

In [55]:
botsatl = len(wcmbotsea['statuses'])

In [ ]:


In [56]:
wcmbotsea


Out[56]:
{'search_metadata': {'completed_in': 0.072,
  'count': 50,
  'max_id': 658233790003855360,
  'max_id_str': '658233790003855360',
  'next_results': '?max_id=658072897286598656&q=%23pyconie&count=50&include_entities=1&result_type=recent',
  'query': '%23pyconie',
  'refresh_url': '?since_id=658233790003855360&q=%23pyconie&result_type=recent&include_entities=1',
  'since_id': 0,
  'since_id_str': '0'},
 'statuses': [{'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:48:59 +0000 2015',
   'entities': {'hashtags': [{'indices': [139, 140], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 191161234,
      'id_str': '191161234',
      'indices': [3, 13],
      'name': 'Eva Gonzalez',
      'screen_name': 'Foxinsock'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658233790003855360,
   'id_str': '658233790003855360',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 10:45:33 +0000 2015',
    'entities': {'hashtags': [{'indices': [126, 134], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 1,
    'favorited': False,
    'geo': None,
    'id': 658232925838790656,
    'id_str': '658232925838790656',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 1,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': 'Really interesting talk on the learning experience by Being Inclusive, Minimising Uncertainty and Addressing Prior Experience #PyConIE',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Wed Sep 15 19:11:07 +0000 2010',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'The Sourcerers Apprentice',
     'entities': {'description': {'urls': []}},
     'favourites_count': 43,
     'follow_request_sent': False,
     'followers_count': 59,
     'following': False,
     'friends_count': 82,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 191161234,
     'id_str': '191161234',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 4,
     'location': 'Nowhere',
     'name': 'Eva Gonzalez',
     'notifications': False,
     'profile_background_color': '000000',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/472002496655679491/LNXHTxC3.jpeg',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/472002496655679491/LNXHTxC3.jpeg',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/191161234/1401368711',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/606516807143424000/hdFCJVmZ_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/606516807143424000/hdFCJVmZ_normal.jpg',
     'profile_link_color': '485C3A',
     'profile_sidebar_border_color': '204207',
     'profile_sidebar_fill_color': '060A00',
     'profile_text_color': '618238',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'Foxinsock',
     'statuses_count': 879,
     'time_zone': 'London',
     'url': None,
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
   'text': 'RT @Foxinsock: Really interesting talk on the learning experience by Being Inclusive, Minimising Uncertainty and Addressing Prior Experienc…',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Fri May 08 18:26:41 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Techie, @Coderdojolim mentor, part time adventurer, rugby fan craft beer lover & all round nice guy. Tweets are mostly my own, except when pillaged by pirates.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'idonate.ie/fundraiser/630…',
        'expanded_url': 'https://www.idonate.ie/fundraiser/63070_barry-goes-running-2015.html',
        'indices': [0, 23],
        'url': 'https://t.co/auyCahnRFx'}]}},
    'favourites_count': 1177,
    'follow_request_sent': False,
    'followers_count': 1380,
    'following': False,
    'friends_count': 2001,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 38715885,
    'id_str': '38715885',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 56,
    'location': 'Limerick, Ireland',
    'name': 'Barry Kennedy',
    'notifications': False,
    'profile_background_color': '59BEE4',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/741899156/7b1cad0896d22d75b85f5f86fc69b59f.jpeg',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/741899156/7b1cad0896d22d75b85f5f86fc69b59f.jpeg',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/38715885/1355866977',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/656099421050945536/9qY6q8jy_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/656099421050945536/9qY6q8jy_normal.png',
    'profile_link_color': '113D4D',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '191F22',
    'profile_text_color': '4BB7DF',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'bazkennedy',
    'statuses_count': 13324,
    'time_zone': 'Dublin',
    'url': 'https://t.co/auyCahnRFx',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:47:56 +0000 2015',
   'entities': {'hashtags': [{'indices': [76, 84], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 1049495413,
      'id_str': '1049495413',
      'indices': [3, 13],
      'name': 'Anna Ossowski',
      'screen_name': 'OssAnna16'},
     {'id': 66294823,
      'id_str': '66294823',
      'indices': [63, 75],
      'name': 'Juliana Arrighi',
      'screen_name': 'juleslearns'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658233525464932353,
   'id_str': '658233525464932353',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 10:45:31 +0000 2015',
    'entities': {'hashtags': [{'indices': [61, 69], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 66294823,
       'id_str': '66294823',
       'indices': [48, 60],
       'name': 'Juliana Arrighi',
       'screen_name': 'juleslearns'}]},
    'favorite_count': 1,
    'favorited': False,
    'geo': None,
    'id': 658232916288360448,
    'id_str': '658232916288360448',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 1,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': 'Be vulnerable yourself. Show your own mistakes. @juleslearns #PyConIE',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Mon Dec 31 04:29:48 +0000 2012',
     'default_profile': False,
     'default_profile_image': False,
     'description': '@djangocon co-organizer,  @PyLadiesRemote group leader, @thepsf board member. Passionate about diversity & community outreach.',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'anna-oz.tumblr.com',
         'expanded_url': 'http://anna-oz.tumblr.com',
         'indices': [0, 22],
         'url': 'http://t.co/Q9hhih49Nm'}]}},
     'favourites_count': 4969,
     'follow_request_sent': False,
     'followers_count': 648,
     'following': False,
     'friends_count': 302,
     'geo_enabled': False,
     'has_extended_profile': True,
     'id': 1049495413,
     'id_str': '1049495413',
     'is_translation_enabled': True,
     'is_translator': False,
     'lang': 'de',
     'listed_count': 48,
     'location': 'Germany/(St. Louis, MO at ❤️)',
     'name': 'Anna Ossowski',
     'notifications': False,
     'profile_background_color': '99FFCC',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1049495413/1442192949',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
     'profile_link_color': '33CCFF',
     'profile_sidebar_border_color': '000000',
     'profile_sidebar_fill_color': '000000',
     'profile_text_color': '000000',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'OssAnna16',
     'statuses_count': 2354,
     'time_zone': 'Berlin',
     'url': 'http://t.co/Q9hhih49Nm',
     'utc_offset': 3600,
     'verified': False}},
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'RT @OssAnna16: Be vulnerable yourself. Show your own mistakes. @juleslearns #PyConIE',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Wed Sep 15 19:11:07 +0000 2010',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'The Sourcerers Apprentice',
    'entities': {'description': {'urls': []}},
    'favourites_count': 43,
    'follow_request_sent': False,
    'followers_count': 59,
    'following': False,
    'friends_count': 82,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 191161234,
    'id_str': '191161234',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 4,
    'location': 'Nowhere',
    'name': 'Eva Gonzalez',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/472002496655679491/LNXHTxC3.jpeg',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/472002496655679491/LNXHTxC3.jpeg',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/191161234/1401368711',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/606516807143424000/hdFCJVmZ_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/606516807143424000/hdFCJVmZ_normal.jpg',
    'profile_link_color': '485C3A',
    'profile_sidebar_border_color': '204207',
    'profile_sidebar_fill_color': '060A00',
    'profile_text_color': '618238',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'Foxinsock',
    'statuses_count': 879,
    'time_zone': 'London',
    'url': None,
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:47:17 +0000 2015',
   'entities': {'hashtags': [{'indices': [0, 9], 'text': 'opendata'},
     {'indices': [63, 71], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658233360498708480,
   'id_str': '658233360498708480',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': '#opendata workshop kicking off now in Field Suite, upstairs at #PyConIE',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Feb 17 10:25:07 +0000 2009',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'Linked & Open Data, Founder of Derilinx',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'derilinx.com',
        'expanded_url': 'http://www.derilinx.com',
        'indices': [0, 22],
        'url': 'http://t.co/sqlMzI7XP4'}]}},
    'favourites_count': 174,
    'follow_request_sent': False,
    'followers_count': 1165,
    'following': False,
    'friends_count': 1403,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 21078662,
    'id_str': '21078662',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 93,
    'location': 'Dublin/London',
    'name': 'Deirdre Lee',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/590876062868963329/X5rKbkrs_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/590876062868963329/X5rKbkrs_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'deirdrelee',
    'statuses_count': 1037,
    'time_zone': 'Dublin',
    'url': 'http://t.co/sqlMzI7XP4',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:45:33 +0000 2015',
   'entities': {'hashtags': [{'indices': [126, 134], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 1,
   'favorited': False,
   'geo': None,
   'id': 658232925838790656,
   'id_str': '658232925838790656',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'Really interesting talk on the learning experience by Being Inclusive, Minimising Uncertainty and Addressing Prior Experience #PyConIE',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Wed Sep 15 19:11:07 +0000 2010',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'The Sourcerers Apprentice',
    'entities': {'description': {'urls': []}},
    'favourites_count': 43,
    'follow_request_sent': False,
    'followers_count': 59,
    'following': False,
    'friends_count': 82,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 191161234,
    'id_str': '191161234',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 4,
    'location': 'Nowhere',
    'name': 'Eva Gonzalez',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/472002496655679491/LNXHTxC3.jpeg',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/472002496655679491/LNXHTxC3.jpeg',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/191161234/1401368711',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/606516807143424000/hdFCJVmZ_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/606516807143424000/hdFCJVmZ_normal.jpg',
    'profile_link_color': '485C3A',
    'profile_sidebar_border_color': '204207',
    'profile_sidebar_fill_color': '060A00',
    'profile_text_color': '618238',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'Foxinsock',
    'statuses_count': 879,
    'time_zone': 'London',
    'url': None,
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:45:31 +0000 2015',
   'entities': {'hashtags': [{'indices': [61, 69], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 66294823,
      'id_str': '66294823',
      'indices': [48, 60],
      'name': 'Juliana Arrighi',
      'screen_name': 'juleslearns'}]},
   'favorite_count': 1,
   'favorited': False,
   'geo': None,
   'id': 658232916288360448,
   'id_str': '658232916288360448',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'Be vulnerable yourself. Show your own mistakes. @juleslearns #PyConIE',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Mon Dec 31 04:29:48 +0000 2012',
    'default_profile': False,
    'default_profile_image': False,
    'description': '@djangocon co-organizer,  @PyLadiesRemote group leader, @thepsf board member. Passionate about diversity & community outreach.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'anna-oz.tumblr.com',
        'expanded_url': 'http://anna-oz.tumblr.com',
        'indices': [0, 22],
        'url': 'http://t.co/Q9hhih49Nm'}]}},
    'favourites_count': 4969,
    'follow_request_sent': False,
    'followers_count': 648,
    'following': False,
    'friends_count': 302,
    'geo_enabled': False,
    'has_extended_profile': True,
    'id': 1049495413,
    'id_str': '1049495413',
    'is_translation_enabled': True,
    'is_translator': False,
    'lang': 'de',
    'listed_count': 48,
    'location': 'Germany/(St. Louis, MO at ❤️)',
    'name': 'Anna Ossowski',
    'notifications': False,
    'profile_background_color': '99FFCC',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1049495413/1442192949',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
    'profile_link_color': '33CCFF',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'OssAnna16',
    'statuses_count': 2354,
    'time_zone': 'Berlin',
    'url': 'http://t.co/Q9hhih49Nm',
    'utc_offset': 3600,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:44:55 +0000 2015',
   'entities': {'hashtags': [{'indices': [139, 140], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 1049495413,
      'id_str': '1049495413',
      'indices': [3, 13],
      'name': 'Anna Ossowski',
      'screen_name': 'OssAnna16'},
     {'id': 66294823,
      'id_str': '66294823',
      'indices': [127, 139],
      'name': 'Juliana Arrighi',
      'screen_name': 'juleslearns'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658232766992154624,
   'id_str': '658232766992154624',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 10:40:59 +0000 2015',
    'entities': {'hashtags': [{'indices': [125, 133], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 66294823,
       'id_str': '66294823',
       'indices': [112, 124],
       'name': 'Juliana Arrighi',
       'screen_name': 'juleslearns'}]},
    'favorite_count': 2,
    'favorited': False,
    'geo': None,
    'id': 658231774686900224,
    'id_str': '658231774686900224',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': "Someone who's just showing up is contributing to the community. Acknowledge and appreciate when people show up! @juleslearns #PyConIE",
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Mon Dec 31 04:29:48 +0000 2012',
     'default_profile': False,
     'default_profile_image': False,
     'description': '@djangocon co-organizer,  @PyLadiesRemote group leader, @thepsf board member. Passionate about diversity & community outreach.',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'anna-oz.tumblr.com',
         'expanded_url': 'http://anna-oz.tumblr.com',
         'indices': [0, 22],
         'url': 'http://t.co/Q9hhih49Nm'}]}},
     'favourites_count': 4969,
     'follow_request_sent': False,
     'followers_count': 648,
     'following': False,
     'friends_count': 302,
     'geo_enabled': False,
     'has_extended_profile': True,
     'id': 1049495413,
     'id_str': '1049495413',
     'is_translation_enabled': True,
     'is_translator': False,
     'lang': 'de',
     'listed_count': 48,
     'location': 'Germany/(St. Louis, MO at ❤️)',
     'name': 'Anna Ossowski',
     'notifications': False,
     'profile_background_color': '99FFCC',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1049495413/1442192949',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
     'profile_link_color': '33CCFF',
     'profile_sidebar_border_color': '000000',
     'profile_sidebar_fill_color': '000000',
     'profile_text_color': '000000',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'OssAnna16',
     'statuses_count': 2354,
     'time_zone': 'Berlin',
     'url': 'http://t.co/Q9hhih49Nm',
     'utc_offset': 3600,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': "RT @OssAnna16: Someone who's just showing up is contributing to the community. Acknowledge and appreciate when people show up! @juleslearns…",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Feb 17 15:03:25 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Software Developer, Educational Researcher, Visiting Scientist at MIT, and overall Open Source fan!',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'josmasflores.blogspot.com',
        'expanded_url': 'http://josmasflores.blogspot.com',
        'indices': [0, 22],
        'url': 'http://t.co/yj9BuZ0V0W'}]}},
    'favourites_count': 10,
    'follow_request_sent': False,
    'followers_count': 426,
    'following': False,
    'friends_count': 519,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 21095167,
    'id_str': '21095167',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 65,
    'location': 'Greater Boston area',
    'name': 'Jos',
    'notifications': False,
    'profile_background_color': '352726',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme5/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme5/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/378800000101701047/1dd7da67ad9f9fad03828909ca5882fb_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/378800000101701047/1dd7da67ad9f9fad03828909ca5882fb_normal.jpeg',
    'profile_link_color': 'D02B55',
    'profile_sidebar_border_color': '829D5E',
    'profile_sidebar_fill_color': '99CC33',
    'profile_text_color': '3E4415',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'josmasflores',
    'statuses_count': 2582,
    'time_zone': None,
    'url': 'http://t.co/yj9BuZ0V0W',
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:42:57 +0000 2015',
   'entities': {'hashtags': [{'indices': [139, 140], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 1049495413,
      'id_str': '1049495413',
      'indices': [3, 13],
      'name': 'Anna Ossowski',
      'screen_name': 'OssAnna16'},
     {'id': 66294823,
      'id_str': '66294823',
      'indices': [127, 139],
      'name': 'Juliana Arrighi',
      'screen_name': 'juleslearns'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658232269967093760,
   'id_str': '658232269967093760',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 10:40:59 +0000 2015',
    'entities': {'hashtags': [{'indices': [125, 133], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 66294823,
       'id_str': '66294823',
       'indices': [112, 124],
       'name': 'Juliana Arrighi',
       'screen_name': 'juleslearns'}]},
    'favorite_count': 2,
    'favorited': False,
    'geo': None,
    'id': 658231774686900224,
    'id_str': '658231774686900224',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': "Someone who's just showing up is contributing to the community. Acknowledge and appreciate when people show up! @juleslearns #PyConIE",
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Mon Dec 31 04:29:48 +0000 2012',
     'default_profile': False,
     'default_profile_image': False,
     'description': '@djangocon co-organizer,  @PyLadiesRemote group leader, @thepsf board member. Passionate about diversity & community outreach.',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'anna-oz.tumblr.com',
         'expanded_url': 'http://anna-oz.tumblr.com',
         'indices': [0, 22],
         'url': 'http://t.co/Q9hhih49Nm'}]}},
     'favourites_count': 4969,
     'follow_request_sent': False,
     'followers_count': 648,
     'following': False,
     'friends_count': 302,
     'geo_enabled': False,
     'has_extended_profile': True,
     'id': 1049495413,
     'id_str': '1049495413',
     'is_translation_enabled': True,
     'is_translator': False,
     'lang': 'de',
     'listed_count': 48,
     'location': 'Germany/(St. Louis, MO at ❤️)',
     'name': 'Anna Ossowski',
     'notifications': False,
     'profile_background_color': '99FFCC',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1049495413/1442192949',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
     'profile_link_color': '33CCFF',
     'profile_sidebar_border_color': '000000',
     'profile_sidebar_fill_color': '000000',
     'profile_text_color': '000000',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'OssAnna16',
     'statuses_count': 2354,
     'time_zone': 'Berlin',
     'url': 'http://t.co/Q9hhih49Nm',
     'utc_offset': 3600,
     'verified': False}},
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': "RT @OssAnna16: Someone who's just showing up is contributing to the community. Acknowledge and appreciate when people show up! @juleslearns…",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Nov 22 01:36:57 +0000 2011',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Computer Scientist & Software Engineer ~/ Hacking Music MartialArts Nutrition Politics Science Reading Writting Painting RolePlaying Humor Pets Games Internet',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'jorgebg.com',
        'expanded_url': 'http://jorgebg.com',
        'indices': [0, 22],
        'url': 'http://t.co/w1SSNAuslS'}]}},
    'favourites_count': 1072,
    'follow_request_sent': False,
    'followers_count': 309,
    'following': False,
    'friends_count': 1272,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 418327708,
    'id_str': '418327708',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 22,
    'location': 'Dublin',
    'name': 'Jorge Barata',
    'notifications': False,
    'profile_background_color': '080206',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/576420831275802625/t_f4hhF6.jpeg',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/576420831275802625/t_f4hhF6.jpeg',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/418327708/1424197042',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/575648745523658752/iJOP-mS4_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/575648745523658752/iJOP-mS4_normal.jpeg',
    'profile_link_color': '023957',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'neuralhacker',
    'statuses_count': 5346,
    'time_zone': 'Dublin',
    'url': 'http://t.co/w1SSNAuslS',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:41:16 +0000 2015',
   'entities': {'hashtags': [{'indices': [139, 140], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 1049495413,
      'id_str': '1049495413',
      'indices': [3, 13],
      'name': 'Anna Ossowski',
      'screen_name': 'OssAnna16'},
     {'id': 66294823,
      'id_str': '66294823',
      'indices': [127, 139],
      'name': 'Juliana Arrighi',
      'screen_name': 'juleslearns'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658231846535319552,
   'id_str': '658231846535319552',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 10:40:59 +0000 2015',
    'entities': {'hashtags': [{'indices': [125, 133], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 66294823,
       'id_str': '66294823',
       'indices': [112, 124],
       'name': 'Juliana Arrighi',
       'screen_name': 'juleslearns'}]},
    'favorite_count': 2,
    'favorited': False,
    'geo': None,
    'id': 658231774686900224,
    'id_str': '658231774686900224',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': "Someone who's just showing up is contributing to the community. Acknowledge and appreciate when people show up! @juleslearns #PyConIE",
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Mon Dec 31 04:29:48 +0000 2012',
     'default_profile': False,
     'default_profile_image': False,
     'description': '@djangocon co-organizer,  @PyLadiesRemote group leader, @thepsf board member. Passionate about diversity & community outreach.',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'anna-oz.tumblr.com',
         'expanded_url': 'http://anna-oz.tumblr.com',
         'indices': [0, 22],
         'url': 'http://t.co/Q9hhih49Nm'}]}},
     'favourites_count': 4969,
     'follow_request_sent': False,
     'followers_count': 648,
     'following': False,
     'friends_count': 302,
     'geo_enabled': False,
     'has_extended_profile': True,
     'id': 1049495413,
     'id_str': '1049495413',
     'is_translation_enabled': True,
     'is_translator': False,
     'lang': 'de',
     'listed_count': 48,
     'location': 'Germany/(St. Louis, MO at ❤️)',
     'name': 'Anna Ossowski',
     'notifications': False,
     'profile_background_color': '99FFCC',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1049495413/1442192949',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
     'profile_link_color': '33CCFF',
     'profile_sidebar_border_color': '000000',
     'profile_sidebar_fill_color': '000000',
     'profile_text_color': '000000',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'OssAnna16',
     'statuses_count': 2354,
     'time_zone': 'Berlin',
     'url': 'http://t.co/Q9hhih49Nm',
     'utc_offset': 3600,
     'verified': False}},
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': "RT @OssAnna16: Someone who's just showing up is contributing to the community. Acknowledge and appreciate when people show up! @juleslearns…",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Thu Jul 09 07:23:51 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'a feminist & novice Python programmer',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'kieczkowska.tumblr.com',
        'expanded_url': 'http://kieczkowska.tumblr.com',
        'indices': [0, 22],
        'url': 'http://t.co/vZsR5XsCMl'}]}},
    'favourites_count': 4427,
    'follow_request_sent': False,
    'followers_count': 389,
    'following': False,
    'friends_count': 355,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 55171851,
    'id_str': '55171851',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 17,
    'location': 'Edinburgh, Scotland',
    'name': 'kinga kieczkowska',
    'notifications': False,
    'profile_background_color': 'ACDED6',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme18/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme18/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/565996668093751296/rMt5VWy__normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/565996668093751296/rMt5VWy__normal.jpeg',
    'profile_link_color': 'F5ABB5',
    'profile_sidebar_border_color': 'FFFFFF',
    'profile_sidebar_fill_color': 'F6F6F6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'kieczkowska',
    'statuses_count': 881,
    'time_zone': None,
    'url': 'http://t.co/vZsR5XsCMl',
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:40:59 +0000 2015',
   'entities': {'hashtags': [{'indices': [125, 133], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 66294823,
      'id_str': '66294823',
      'indices': [112, 124],
      'name': 'Juliana Arrighi',
      'screen_name': 'juleslearns'}]},
   'favorite_count': 2,
   'favorited': False,
   'geo': None,
   'id': 658231774686900224,
   'id_str': '658231774686900224',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 3,
   'retweeted': False,
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': "Someone who's just showing up is contributing to the community. Acknowledge and appreciate when people show up! @juleslearns #PyConIE",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Mon Dec 31 04:29:48 +0000 2012',
    'default_profile': False,
    'default_profile_image': False,
    'description': '@djangocon co-organizer,  @PyLadiesRemote group leader, @thepsf board member. Passionate about diversity & community outreach.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'anna-oz.tumblr.com',
        'expanded_url': 'http://anna-oz.tumblr.com',
        'indices': [0, 22],
        'url': 'http://t.co/Q9hhih49Nm'}]}},
    'favourites_count': 4969,
    'follow_request_sent': False,
    'followers_count': 648,
    'following': False,
    'friends_count': 302,
    'geo_enabled': False,
    'has_extended_profile': True,
    'id': 1049495413,
    'id_str': '1049495413',
    'is_translation_enabled': True,
    'is_translator': False,
    'lang': 'de',
    'listed_count': 48,
    'location': 'Germany/(St. Louis, MO at ❤️)',
    'name': 'Anna Ossowski',
    'notifications': False,
    'profile_background_color': '99FFCC',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1049495413/1442192949',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
    'profile_link_color': '33CCFF',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'OssAnna16',
    'statuses_count': 2354,
    'time_zone': 'Berlin',
    'url': 'http://t.co/Q9hhih49Nm',
    'utc_offset': 3600,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:40:46 +0000 2015',
   'entities': {'hashtags': [{'indices': [88, 96], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 69133574,
      'id_str': '69133574',
      'indices': [100, 114],
      'name': 'Hadley Wickham',
      'screen_name': 'hadleywickham'},
     {'id': 14923444,
      'id_str': '14923444',
      'indices': [115, 126],
      'name': 'Ian Ozsvald',
      'screen_name': 'ianozsvald'}]},
   'favorite_count': 2,
   'favorited': False,
   'geo': None,
   'id': 658231722836914176,
   'id_str': '658231722836914176',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': "Looking forward to speaking this afternoon on the 'last mile' problem of data science - #PyConIE cc @hadleywickham @ianozsvald",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Thu Feb 07 12:32:17 +0000 2008',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Maths and data geek. I give you insights from data \nViews are all my own',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'peadarcoyle.com',
        'expanded_url': 'http://www.peadarcoyle.com',
        'indices': [0, 22],
        'url': 'http://t.co/aX05xAsMu5'}]}},
    'favourites_count': 2644,
    'follow_request_sent': False,
    'followers_count': 700,
    'following': False,
    'friends_count': 1180,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 13202212,
    'id_str': '13202212',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 71,
    'location': 'Luxembourg',
    'name': 'Peadar Coyle',
    'notifications': False,
    'profile_background_color': 'BADFCD',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme12/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme12/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/378800000036035294/cbf7c04c7d6714e4017364296850059f_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/378800000036035294/cbf7c04c7d6714e4017364296850059f_normal.jpeg',
    'profile_link_color': 'FF3B3B',
    'profile_sidebar_border_color': 'F2E195',
    'profile_sidebar_fill_color': 'FFF7CC',
    'profile_text_color': '0C3E53',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'Springcoil',
    'statuses_count': 8504,
    'time_zone': 'Dublin',
    'url': 'http://t.co/aX05xAsMu5',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:34:57 +0000 2015',
   'entities': {'hashtags': [{'indices': [30, 38], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 2633711,
      'id_str': '2633711',
      'indices': [3, 13],
      'name': 'Steve Holden',
      'screen_name': 'holdenweb'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658230258840248320,
   'id_str': '658230258840248320',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sat Oct 24 23:38:32 +0000 2015',
    'entities': {'hashtags': [{'indices': [15, 23], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 7,
    'favorited': False,
    'geo': None,
    'id': 658065063551614976,
    'id_str': '658065063551614976',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="http://www.hootsuite.com" rel="nofollow">Hootsuite</a>',
    'text': 'Had a blast at #PyConIE - hard to believe that after only 13 years there are now more than 40 PyCons all over the world',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Wed Mar 28 07:53:11 +0000 2007',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Web technologist, instructor, mentor, consultant, and pragmatic user of the Oxford comma. Escaped Python Software Foundation chairman. Thinker',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'holdenweb.blogspot.com',
         'expanded_url': 'http://holdenweb.blogspot.com/',
         'indices': [0, 22],
         'url': 'http://t.co/CNvxx6kdmv'}]}},
     'favourites_count': 129,
     'follow_request_sent': False,
     'followers_count': 4291,
     'following': False,
     'friends_count': 328,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 2633711,
     'id_str': '2633711',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 361,
     'location': 'Portland, OR',
     'name': 'Steve Holden',
     'notifications': False,
     'profile_background_color': '9AE4E8',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/4668108/GGSeamless.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/4668108/GGSeamless.png',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2633711/1356626363',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/582695392384397313/VWvz0uK4_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/582695392384397313/VWvz0uK4_normal.jpg',
     'profile_link_color': '0000FF',
     'profile_sidebar_border_color': '87BC44',
     'profile_sidebar_fill_color': 'E0FF92',
     'profile_text_color': '000000',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'holdenweb',
     'statuses_count': 22102,
     'time_zone': 'Pacific Time (US & Canada)',
     'url': 'http://t.co/CNvxx6kdmv',
     'utc_offset': -25200,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @holdenweb: Had a blast at #PyConIE - hard to believe that after only 13 years there are now more than 40 PyCons all over the world',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Thu May 21 15:26:42 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Comp. Sci. Ph.D / Pythonista / Dubliner.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'instagram.com/paulogrady',
        'expanded_url': 'http://instagram.com/paulogrady',
        'indices': [0, 22],
        'url': 'http://t.co/E6g90mEPup'}]}},
    'favourites_count': 4812,
    'follow_request_sent': False,
    'followers_count': 661,
    'following': False,
    'friends_count': 473,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 41607179,
    'id_str': '41607179',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 18,
    'location': 'Dublin, Ireland.',
    'name': "Paul O'Grady",
    'notifications': False,
    'profile_background_color': '022330',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme15/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme15/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/41607179/1433964376',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/608717088832811009/wEuTWt01_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/608717088832811009/wEuTWt01_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'A8C7F7',
    'profile_sidebar_fill_color': 'C0DFEC',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'paul_ogrady',
    'statuses_count': 2552,
    'time_zone': 'Dublin',
    'url': 'http://t.co/E6g90mEPup',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:33:17 +0000 2015',
   'entities': {'hashtags': [{'indices': [132, 140], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 1049495413,
      'id_str': '1049495413',
      'indices': [3, 13],
      'name': 'Anna Ossowski',
      'screen_name': 'OssAnna16'},
     {'id': 66294823,
      'id_str': '66294823',
      'indices': [119, 131],
      'name': 'Juliana Arrighi',
      'screen_name': 'juleslearns'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658229839212748800,
   'id_str': '658229839212748800',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 10:31:55 +0000 2015',
    'entities': {'hashtags': [{'indices': [117, 125], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 66294823,
       'id_str': '66294823',
       'indices': [104, 116],
       'name': 'Juliana Arrighi',
       'screen_name': 'juleslearns'}]},
    'favorite_count': 0,
    'favorited': False,
    'geo': None,
    'id': 658229494256414720,
    'id_str': '658229494256414720',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 1,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': "When learning spaces aren't safe for certain kinds of people we're filtering out part of our community. @juleslearns #PyConIE",
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Mon Dec 31 04:29:48 +0000 2012',
     'default_profile': False,
     'default_profile_image': False,
     'description': '@djangocon co-organizer,  @PyLadiesRemote group leader, @thepsf board member. Passionate about diversity & community outreach.',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'anna-oz.tumblr.com',
         'expanded_url': 'http://anna-oz.tumblr.com',
         'indices': [0, 22],
         'url': 'http://t.co/Q9hhih49Nm'}]}},
     'favourites_count': 4969,
     'follow_request_sent': False,
     'followers_count': 648,
     'following': False,
     'friends_count': 302,
     'geo_enabled': False,
     'has_extended_profile': True,
     'id': 1049495413,
     'id_str': '1049495413',
     'is_translation_enabled': True,
     'is_translator': False,
     'lang': 'de',
     'listed_count': 48,
     'location': 'Germany/(St. Louis, MO at ❤️)',
     'name': 'Anna Ossowski',
     'notifications': False,
     'profile_background_color': '99FFCC',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1049495413/1442192949',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
     'profile_link_color': '33CCFF',
     'profile_sidebar_border_color': '000000',
     'profile_sidebar_fill_color': '000000',
     'profile_text_color': '000000',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'OssAnna16',
     'statuses_count': 2354,
     'time_zone': 'Berlin',
     'url': 'http://t.co/Q9hhih49Nm',
     'utc_offset': 3600,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': "RT @OssAnna16: When learning spaces aren't safe for certain kinds of people we're filtering out part of our community. @juleslearns #PyConIE",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Feb 17 15:03:25 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Software Developer, Educational Researcher, Visiting Scientist at MIT, and overall Open Source fan!',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'josmasflores.blogspot.com',
        'expanded_url': 'http://josmasflores.blogspot.com',
        'indices': [0, 22],
        'url': 'http://t.co/yj9BuZ0V0W'}]}},
    'favourites_count': 10,
    'follow_request_sent': False,
    'followers_count': 426,
    'following': False,
    'friends_count': 519,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 21095167,
    'id_str': '21095167',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 65,
    'location': 'Greater Boston area',
    'name': 'Jos',
    'notifications': False,
    'profile_background_color': '352726',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme5/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme5/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/378800000101701047/1dd7da67ad9f9fad03828909ca5882fb_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/378800000101701047/1dd7da67ad9f9fad03828909ca5882fb_normal.jpeg',
    'profile_link_color': 'D02B55',
    'profile_sidebar_border_color': '829D5E',
    'profile_sidebar_fill_color': '99CC33',
    'profile_text_color': '3E4415',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'josmasflores',
    'statuses_count': 2582,
    'time_zone': None,
    'url': 'http://t.co/yj9BuZ0V0W',
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:32:43 +0000 2015',
   'entities': {'hashtags': [{'indices': [28, 36], 'text': 'PyConIE'},
     {'indices': [84, 93], 'text': 'opendata'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 21078662,
      'id_str': '21078662',
      'indices': [3, 14],
      'name': 'Deirdre Lee',
      'screen_name': 'deirdrelee'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658229697902477312,
   'id_str': '658229697902477312',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 09:51:37 +0000 2015',
    'entities': {'hashtags': [{'indices': [12, 20], 'text': 'PyConIE'},
      {'indices': [68, 77], 'text': 'opendata'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 4,
    'favorited': False,
    'geo': None,
    'id': 658219350760013824,
    'id_str': '658219350760013824',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 1,
    'retweeted': False,
    'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    'text': 'En route to #PyConIE after extra hour in leaba! Talking about using #opendata at 10:50',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Tue Feb 17 10:25:07 +0000 2009',
     'default_profile': True,
     'default_profile_image': False,
     'description': 'Linked & Open Data, Founder of Derilinx',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'derilinx.com',
         'expanded_url': 'http://www.derilinx.com',
         'indices': [0, 22],
         'url': 'http://t.co/sqlMzI7XP4'}]}},
     'favourites_count': 174,
     'follow_request_sent': False,
     'followers_count': 1165,
     'following': False,
     'friends_count': 1403,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 21078662,
     'id_str': '21078662',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 93,
     'location': 'Dublin/London',
     'name': 'Deirdre Lee',
     'notifications': False,
     'profile_background_color': 'C0DEED',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_image_url': 'http://pbs.twimg.com/profile_images/590876062868963329/X5rKbkrs_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/590876062868963329/X5rKbkrs_normal.jpg',
     'profile_link_color': '0084B4',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'deirdrelee',
     'statuses_count': 1037,
     'time_zone': 'Dublin',
     'url': 'http://t.co/sqlMzI7XP4',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @deirdrelee: En route to #PyConIE after extra hour in leaba! Talking about using #opendata at 10:50',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Feb 17 15:03:25 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Software Developer, Educational Researcher, Visiting Scientist at MIT, and overall Open Source fan!',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'josmasflores.blogspot.com',
        'expanded_url': 'http://josmasflores.blogspot.com',
        'indices': [0, 22],
        'url': 'http://t.co/yj9BuZ0V0W'}]}},
    'favourites_count': 10,
    'follow_request_sent': False,
    'followers_count': 426,
    'following': False,
    'friends_count': 519,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 21095167,
    'id_str': '21095167',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 65,
    'location': 'Greater Boston area',
    'name': 'Jos',
    'notifications': False,
    'profile_background_color': '352726',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme5/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme5/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/378800000101701047/1dd7da67ad9f9fad03828909ca5882fb_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/378800000101701047/1dd7da67ad9f9fad03828909ca5882fb_normal.jpeg',
    'profile_link_color': 'D02B55',
    'profile_sidebar_border_color': '829D5E',
    'profile_sidebar_fill_color': '99CC33',
    'profile_text_color': '3E4415',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'josmasflores',
    'statuses_count': 2582,
    'time_zone': None,
    'url': 'http://t.co/yj9BuZ0V0W',
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:31:55 +0000 2015',
   'entities': {'hashtags': [{'indices': [117, 125], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 66294823,
      'id_str': '66294823',
      'indices': [104, 116],
      'name': 'Juliana Arrighi',
      'screen_name': 'juleslearns'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658229494256414720,
   'id_str': '658229494256414720',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': "When learning spaces aren't safe for certain kinds of people we're filtering out part of our community. @juleslearns #PyConIE",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Mon Dec 31 04:29:48 +0000 2012',
    'default_profile': False,
    'default_profile_image': False,
    'description': '@djangocon co-organizer,  @PyLadiesRemote group leader, @thepsf board member. Passionate about diversity & community outreach.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'anna-oz.tumblr.com',
        'expanded_url': 'http://anna-oz.tumblr.com',
        'indices': [0, 22],
        'url': 'http://t.co/Q9hhih49Nm'}]}},
    'favourites_count': 4969,
    'follow_request_sent': False,
    'followers_count': 648,
    'following': False,
    'friends_count': 302,
    'geo_enabled': False,
    'has_extended_profile': True,
    'id': 1049495413,
    'id_str': '1049495413',
    'is_translation_enabled': True,
    'is_translator': False,
    'lang': 'de',
    'listed_count': 48,
    'location': 'Germany/(St. Louis, MO at ❤️)',
    'name': 'Anna Ossowski',
    'notifications': False,
    'profile_background_color': '99FFCC',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1049495413/1442192949',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/574569088359489536/C7MkEYd__normal.jpeg',
    'profile_link_color': '33CCFF',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'OssAnna16',
    'statuses_count': 2354,
    'time_zone': 'Berlin',
    'url': 'http://t.co/Q9hhih49Nm',
    'utc_offset': 3600,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:25:42 +0000 2015',
   'entities': {'hashtags': [{'indices': [81, 89], 'text': 'pyconie'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 75483,
      'id_str': '75483',
      'indices': [3, 10],
      'name': 'whykay',
      'screen_name': 'whykay'},
     {'id': 284739139,
      'id_str': '284739139',
      'indices': [18, 27],
      'name': 'PyLadies',
      'screen_name': 'pyladies'},
     {'id': 2544208537,
      'id_str': '2544208537',
      'indices': [34, 46],
      'name': 'Django Girls',
      'screen_name': 'djangogirls'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658227930930270208,
   'id_str': '658227930930270208',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 4,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 10:10:25 +0000 2015',
    'entities': {'hashtags': [{'indices': [69, 77], 'text': 'pyconie'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 284739139,
       'id_str': '284739139',
       'indices': [6, 15],
       'name': 'PyLadies',
       'screen_name': 'pyladies'},
      {'id': 2544208537,
       'id_str': '2544208537',
       'indices': [22, 34],
       'name': 'Django Girls',
       'screen_name': 'djangogirls'}]},
    'favorite_count': 3,
    'favorited': False,
    'geo': None,
    'id': 658224085151948801,
    'id_str': '658224085151948801',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 4,
    'retweeted': False,
    'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
    'text': '[ANN] @pyladies &amp; @djangogirls lunch at restaurant. Look for me. #pyconie',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sun Dec 17 12:45:54 +0000 2006',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'A Pythonista (I think I can call myself that nowadays). So a coder & a tech event organiser. I ♥ Python (after my hubby, of course).',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'about.me/whykay',
         'expanded_url': 'http://about.me/whykay',
         'indices': [0, 20],
         'url': 'http://t.co/LAKRqfvw'}]}},
     'favourites_count': 1616,
     'follow_request_sent': False,
     'followers_count': 1260,
     'following': False,
     'friends_count': 376,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 75483,
     'id_str': '75483',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 133,
     'location': 'Dublin',
     'name': 'whykay',
     'notifications': False,
     'profile_background_color': '07090B',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/75483/1354053976',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_link_color': 'C34242',
     'profile_sidebar_border_color': 'BFBFBF',
     'profile_sidebar_fill_color': 'C9C9C9',
     'profile_text_color': '1C1F23',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'whykay',
     'statuses_count': 22056,
     'time_zone': 'Dublin',
     'url': 'http://t.co/LAKRqfvw',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @whykay: [ANN] @pyladies &amp; @djangogirls lunch at restaurant. Look for me. #pyconie',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sat Oct 24 10:19:03 +0000 2015',
    'default_profile': True,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 1,
    'follow_request_sent': False,
    'followers_count': 3,
    'following': False,
    'friends_count': 8,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 4030846409,
    'id_str': '4030846409',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 1,
    'location': '',
    'name': 'Irene Y',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4030846409/1445715748',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/658003619191595008/Z26512Ra_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/658003619191595008/Z26512Ra_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': '_iy0_',
    'statuses_count': 1,
    'time_zone': 'Pacific Time (US & Canada)',
    'url': None,
    'utc_offset': -25200,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:22:01 +0000 2015',
   'entities': {'hashtags': [{'indices': [43, 50], 'text': 'Python'},
     {'indices': [84, 92], 'text': 'pyconie'}],
    'symbols': [],
    'urls': [{'display_url': 'slideshare.net/brianbrazil/be…',
      'expanded_url': 'http://www.slideshare.net/brianbrazil/better-monitoring-for-python-inclusive-monitoring-with-prometheus-pycon-ireland-lightning-talk',
      'indices': [93, 116],
      'url': 'https://t.co/IfA0n58prb'},
     {'display_url': 'github.com/prometheus/cli…',
      'expanded_url': 'https://github.com/prometheus/client_python',
      'indices': [117, 140],
      'url': 'https://t.co/8Ta2QagIRa'}],
    'user_mentions': [{'id': 3328053545,
      'id_str': '3328053545',
      'indices': [3, 19],
      'name': 'Robust Perception',
      'screen_name': 'RobustPerceiver'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658227003863248896,
   'id_str': '658227003863248896',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 09:11:48 +0000 2015',
    'entities': {'hashtags': [{'indices': [22, 29], 'text': 'Python'},
      {'indices': [63, 71], 'text': 'pyconie'}],
     'symbols': [],
     'urls': [{'display_url': 'slideshare.net/brianbrazil/be…',
       'expanded_url': 'http://www.slideshare.net/brianbrazil/better-monitoring-for-python-inclusive-monitoring-with-prometheus-pycon-ireland-lightning-talk',
       'indices': [72, 95],
       'url': 'https://t.co/IfA0n58prb'},
      {'display_url': 'github.com/prometheus/cli…',
       'expanded_url': 'https://github.com/prometheus/client_python',
       'indices': [96, 119],
       'url': 'https://t.co/8Ta2QagIRa'}],
     'user_mentions': []},
    'favorite_count': 7,
    'favorited': False,
    'geo': None,
    'id': 658209331092041728,
    'id_str': '658209331092041728',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': 'Better monitoring for #Python, slides for my lightning talk at #pyconie https://t.co/IfA0n58prb https://t.co/8Ta2QagIRa',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Mon Jun 15 22:08:49 +0000 2015',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Helping organisations scale and improve their customer-serving IT infrastructure though through better practices and @PrometheusIO',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'robustperception.io',
         'expanded_url': 'http://www.robustperception.io',
         'indices': [0, 22],
         'url': 'http://t.co/MvpiQeXplt'}]}},
     'favourites_count': 0,
     'follow_request_sent': False,
     'followers_count': 67,
     'following': False,
     'friends_count': 58,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 3328053545,
     'id_str': '3328053545',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 3,
     'location': 'Dublin, Ireland',
     'name': 'Robust Perception',
     'notifications': False,
     'profile_background_color': '000000',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/3328053545/1437869248',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/625097227271319552/jqTmGnHJ_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/625097227271319552/jqTmGnHJ_normal.png',
     'profile_link_color': '3B94D9',
     'profile_sidebar_border_color': '000000',
     'profile_sidebar_fill_color': '000000',
     'profile_text_color': '000000',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'RobustPerceiver',
     'statuses_count': 110,
     'time_zone': 'Dublin',
     'url': 'http://t.co/MvpiQeXplt',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @RobustPerceiver: Better monitoring for #Python, slides for my lightning talk at #pyconie https://t.co/IfA0n58prb https://t.co/8Ta2QagIRa',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Thu May 08 17:02:46 +0000 2008',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'Data Scientist and passionate mathematician interested in machine learning and statistics',
    'entities': {'description': {'urls': []}},
    'favourites_count': 77,
    'follow_request_sent': False,
    'followers_count': 61,
    'following': False,
    'friends_count': 94,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 14702678,
    'id_str': '14702678',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 8,
    'location': 'Cologne, North Rhine-Westphalia',
    'name': 'Florian Wilhelm',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14702678/1445114537',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/655483999331205120/sKkZAGfi_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/655483999331205120/sKkZAGfi_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'FlorianWilhelm',
    'statuses_count': 82,
    'time_zone': 'Berlin',
    'url': None,
    'utc_offset': 3600,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:19:21 +0000 2015',
   'entities': {'hashtags': [{'indices': [81, 89], 'text': 'pyconie'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 75483,
      'id_str': '75483',
      'indices': [3, 10],
      'name': 'whykay',
      'screen_name': 'whykay'},
     {'id': 284739139,
      'id_str': '284739139',
      'indices': [18, 27],
      'name': 'PyLadies',
      'screen_name': 'pyladies'},
     {'id': 2544208537,
      'id_str': '2544208537',
      'indices': [34, 46],
      'name': 'Django Girls',
      'screen_name': 'djangogirls'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658226332363456512,
   'id_str': '658226332363456512',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 4,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 10:10:25 +0000 2015',
    'entities': {'hashtags': [{'indices': [69, 77], 'text': 'pyconie'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 284739139,
       'id_str': '284739139',
       'indices': [6, 15],
       'name': 'PyLadies',
       'screen_name': 'pyladies'},
      {'id': 2544208537,
       'id_str': '2544208537',
       'indices': [22, 34],
       'name': 'Django Girls',
       'screen_name': 'djangogirls'}]},
    'favorite_count': 3,
    'favorited': False,
    'geo': None,
    'id': 658224085151948801,
    'id_str': '658224085151948801',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 4,
    'retweeted': False,
    'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
    'text': '[ANN] @pyladies &amp; @djangogirls lunch at restaurant. Look for me. #pyconie',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sun Dec 17 12:45:54 +0000 2006',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'A Pythonista (I think I can call myself that nowadays). So a coder & a tech event organiser. I ♥ Python (after my hubby, of course).',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'about.me/whykay',
         'expanded_url': 'http://about.me/whykay',
         'indices': [0, 20],
         'url': 'http://t.co/LAKRqfvw'}]}},
     'favourites_count': 1616,
     'follow_request_sent': False,
     'followers_count': 1260,
     'following': False,
     'friends_count': 376,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 75483,
     'id_str': '75483',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 133,
     'location': 'Dublin',
     'name': 'whykay',
     'notifications': False,
     'profile_background_color': '07090B',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/75483/1354053976',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_link_color': 'C34242',
     'profile_sidebar_border_color': 'BFBFBF',
     'profile_sidebar_fill_color': 'C9C9C9',
     'profile_text_color': '1C1F23',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'whykay',
     'statuses_count': 22056,
     'time_zone': 'Dublin',
     'url': 'http://t.co/LAKRqfvw',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://wcmckee.com" rel="nofollow">wcmtwet</a>',
   'text': 'RT @whykay: [ANN] @pyladies &amp; @djangogirls lunch at restaurant. Look for me. #pyconie',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sat Sep 20 08:09:39 +0000 2014',
    'default_profile': False,
    'default_profile_image': False,
    'description': "Open Source Python Software and Web Development. AV volunteer tech confs. I can't endorse my own tweets.",
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'wcmckee.com',
        'expanded_url': 'http://wcmckee.com',
        'indices': [0, 22],
        'url': 'http://t.co/KQYI4xVTZd'}]}},
    'favourites_count': 3462,
    'follow_request_sent': False,
    'followers_count': 778,
    'following': False,
    'friends_count': 889,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 2821347210,
    'id_str': '2821347210',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 696,
    'location': 'Hamilton City, New Zealand',
    'name': 'wcmckee',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2821347210/1442397712',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/621211385746161664/tGchJstD_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/621211385746161664/tGchJstD_normal.jpg',
    'profile_link_color': 'FFCC4D',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'wcmckeedotcom',
    'statuses_count': 12267,
    'time_zone': 'Wellington',
    'url': 'http://t.co/KQYI4xVTZd',
    'utc_offset': 46800,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:17:53 +0000 2015',
   'entities': {'hashtags': [{'indices': [81, 89], 'text': 'pyconie'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 75483,
      'id_str': '75483',
      'indices': [3, 10],
      'name': 'whykay',
      'screen_name': 'whykay'},
     {'id': 284739139,
      'id_str': '284739139',
      'indices': [18, 27],
      'name': 'PyLadies',
      'screen_name': 'pyladies'},
     {'id': 2544208537,
      'id_str': '2544208537',
      'indices': [34, 46],
      'name': 'Django Girls',
      'screen_name': 'djangogirls'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658225962686029824,
   'id_str': '658225962686029824',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 4,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 10:10:25 +0000 2015',
    'entities': {'hashtags': [{'indices': [69, 77], 'text': 'pyconie'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 284739139,
       'id_str': '284739139',
       'indices': [6, 15],
       'name': 'PyLadies',
       'screen_name': 'pyladies'},
      {'id': 2544208537,
       'id_str': '2544208537',
       'indices': [22, 34],
       'name': 'Django Girls',
       'screen_name': 'djangogirls'}]},
    'favorite_count': 3,
    'favorited': False,
    'geo': None,
    'id': 658224085151948801,
    'id_str': '658224085151948801',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 4,
    'retweeted': False,
    'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
    'text': '[ANN] @pyladies &amp; @djangogirls lunch at restaurant. Look for me. #pyconie',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sun Dec 17 12:45:54 +0000 2006',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'A Pythonista (I think I can call myself that nowadays). So a coder & a tech event organiser. I ♥ Python (after my hubby, of course).',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'about.me/whykay',
         'expanded_url': 'http://about.me/whykay',
         'indices': [0, 20],
         'url': 'http://t.co/LAKRqfvw'}]}},
     'favourites_count': 1616,
     'follow_request_sent': False,
     'followers_count': 1260,
     'following': False,
     'friends_count': 376,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 75483,
     'id_str': '75483',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 133,
     'location': 'Dublin',
     'name': 'whykay',
     'notifications': False,
     'profile_background_color': '07090B',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/75483/1354053976',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_link_color': 'C34242',
     'profile_sidebar_border_color': 'BFBFBF',
     'profile_sidebar_fill_color': 'C9C9C9',
     'profile_text_color': '1C1F23',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'whykay',
     'statuses_count': 22056,
     'time_zone': 'Dublin',
     'url': 'http://t.co/LAKRqfvw',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
   'text': 'RT @whykay: [ANN] @pyladies &amp; @djangogirls lunch at restaurant. Look for me. #pyconie',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Mon Jul 15 21:06:32 +0000 2013',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'We are the first Irish PyLadies group.   You like Python? Curious about Python? Or just want to hang out and code. Join us and bring along your laptop.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'dublin.pyladies.com',
        'expanded_url': 'https://dublin.pyladies.com',
        'indices': [0, 23],
        'url': 'https://t.co/keRT9srQx0'}]}},
    'favourites_count': 260,
    'follow_request_sent': False,
    'followers_count': 333,
    'following': False,
    'friends_count': 52,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 1596781705,
    'id_str': '1596781705',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en-gb',
    'listed_count': 52,
    'location': 'Dublin, Ireland',
    'name': 'PyLadiesDub',
    'notifications': False,
    'profile_background_color': 'B2DFDA',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme13/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme13/bg.gif',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1596781705/1380302449',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/461433961890078720/6s-jJV9p_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/461433961890078720/6s-jJV9p_normal.png',
    'profile_link_color': '93A644',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': 'FFFFFF',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'PyLadiesDub',
    'statuses_count': 1620,
    'time_zone': 'Dublin',
    'url': 'https://t.co/keRT9srQx0',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:17:51 +0000 2015',
   'entities': {'hashtags': [{'indices': [81, 89], 'text': 'pyconie'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 75483,
      'id_str': '75483',
      'indices': [3, 10],
      'name': 'whykay',
      'screen_name': 'whykay'},
     {'id': 284739139,
      'id_str': '284739139',
      'indices': [18, 27],
      'name': 'PyLadies',
      'screen_name': 'pyladies'},
     {'id': 2544208537,
      'id_str': '2544208537',
      'indices': [34, 46],
      'name': 'Django Girls',
      'screen_name': 'djangogirls'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658225955379507200,
   'id_str': '658225955379507200',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 4,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 10:10:25 +0000 2015',
    'entities': {'hashtags': [{'indices': [69, 77], 'text': 'pyconie'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 284739139,
       'id_str': '284739139',
       'indices': [6, 15],
       'name': 'PyLadies',
       'screen_name': 'pyladies'},
      {'id': 2544208537,
       'id_str': '2544208537',
       'indices': [22, 34],
       'name': 'Django Girls',
       'screen_name': 'djangogirls'}]},
    'favorite_count': 3,
    'favorited': False,
    'geo': None,
    'id': 658224085151948801,
    'id_str': '658224085151948801',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 4,
    'retweeted': False,
    'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
    'text': '[ANN] @pyladies &amp; @djangogirls lunch at restaurant. Look for me. #pyconie',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sun Dec 17 12:45:54 +0000 2006',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'A Pythonista (I think I can call myself that nowadays). So a coder & a tech event organiser. I ♥ Python (after my hubby, of course).',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'about.me/whykay',
         'expanded_url': 'http://about.me/whykay',
         'indices': [0, 20],
         'url': 'http://t.co/LAKRqfvw'}]}},
     'favourites_count': 1616,
     'follow_request_sent': False,
     'followers_count': 1260,
     'following': False,
     'friends_count': 376,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 75483,
     'id_str': '75483',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 133,
     'location': 'Dublin',
     'name': 'whykay',
     'notifications': False,
     'profile_background_color': '07090B',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/75483/1354053976',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_link_color': 'C34242',
     'profile_sidebar_border_color': 'BFBFBF',
     'profile_sidebar_fill_color': 'C9C9C9',
     'profile_text_color': '1C1F23',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'whykay',
     'statuses_count': 22056,
     'time_zone': 'Dublin',
     'url': 'http://t.co/LAKRqfvw',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
   'text': 'RT @whykay: [ANN] @pyladies &amp; @djangogirls lunch at restaurant. Look for me. #pyconie',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Thu Jun 21 12:23:19 +0000 2012',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Based in Dublin, Ireland. We organise female friendly coding workshops and events. Email: codinggrace@gmail.com',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'codinggrace.com',
        'expanded_url': 'http://codinggrace.com',
        'indices': [0, 22],
        'url': 'http://t.co/ieqzt4zrXG'}]}},
    'favourites_count': 695,
    'follow_request_sent': False,
    'followers_count': 1185,
    'following': False,
    'friends_count': 118,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 614274340,
    'id_str': '614274340',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 124,
    'location': 'Ireland',
    'name': 'Coding Grace',
    'notifications': False,
    'profile_background_color': 'B2DFDA',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme13/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme13/bg.gif',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/614274340/1398202538',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/461433528215797760/wiQjDAg1_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/461433528215797760/wiQjDAg1_normal.jpeg',
    'profile_link_color': '93A644',
    'profile_sidebar_border_color': 'EEEEEE',
    'profile_sidebar_fill_color': 'FFFFFF',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'CodingGrace',
    'statuses_count': 3944,
    'time_zone': 'Dublin',
    'url': 'http://t.co/ieqzt4zrXG',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:15:29 +0000 2015',
   'entities': {'hashtags': [{'indices': [30, 38], 'text': 'PyConIE'}],
    'media': [{'display_url': 'pic.twitter.com/tgM8IIuTZS',
      'expanded_url': 'http://twitter.com/MariusAvram91/status/658225359813529600/photo/1',
      'id': 658225332386836481,
      'id_str': '658225332386836481',
      'indices': [54, 77],
      'media_url': 'http://pbs.twimg.com/media/CSJ8c88UsAEUwbZ.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/CSJ8c88UsAEUwbZ.jpg',
      'sizes': {'large': {'h': 768, 'resize': 'fit', 'w': 1024},
       'medium': {'h': 450, 'resize': 'fit', 'w': 600},
       'small': {'h': 255, 'resize': 'fit', 'w': 340},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'type': 'photo',
      'url': 'https://t.co/tgM8IIuTZS'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 21097510,
      'id_str': '21097510',
      'indices': [39, 53],
      'name': 'Python Ireland',
      'screen_name': 'PythonIreland'}]},
   'favorite_count': 5,
   'favorited': False,
   'geo': None,
   'id': 658225359813529600,
   'id_str': '658225359813529600',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'Sunday morning, hangover... @ #PyConIE @PythonIreland https://t.co/tgM8IIuTZS',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sat Mar 21 23:44:46 +0000 2015',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Cofounder @kimeraapp | Web Developer at Learning Data | Amateur artist and photographer. Linkedin: http://t.co/lqYGVQkIaZ https://t.co/NsLif1hXRR',
    'entities': {'description': {'urls': [{'display_url': 'bit.ly/mariusavram',
        'expanded_url': 'http://bit.ly/mariusavram',
        'indices': [99, 121],
        'url': 'http://t.co/lqYGVQkIaZ'},
       {'display_url': 'github.com/mariusavram91',
        'expanded_url': 'https://github.com/mariusavram91',
        'indices': [122, 145],
        'url': 'https://t.co/NsLif1hXRR'}]},
     'url': {'urls': [{'display_url': 'mariusavram.com',
        'expanded_url': 'http://www.mariusavram.com',
        'indices': [0, 22],
        'url': 'http://t.co/duzCzu97le'}]}},
    'favourites_count': 200,
    'follow_request_sent': False,
    'followers_count': 777,
    'following': False,
    'friends_count': 1438,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 3103110153,
    'id_str': '3103110153',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 58,
    'location': 'Dublin, Ireland',
    'name': 'Marius Avram',
    'notifications': False,
    'profile_background_color': '1A1B1F',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/586298550981562368/QMr7n6IZ.jpg',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/586298550981562368/QMr7n6IZ.jpg',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/3103110153/1433629714',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/607312701023522816/vxaZ8Nwa_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/607312701023522816/vxaZ8Nwa_normal.jpg',
    'profile_link_color': '2FC2EF',
    'profile_sidebar_border_color': '181A1E',
    'profile_sidebar_fill_color': '252429',
    'profile_text_color': '666666',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'MariusAvram91',
    'statuses_count': 400,
    'time_zone': 'Dublin',
    'url': 'http://t.co/duzCzu97le',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:10:25 +0000 2015',
   'entities': {'hashtags': [{'indices': [69, 77], 'text': 'pyconie'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 284739139,
      'id_str': '284739139',
      'indices': [6, 15],
      'name': 'PyLadies',
      'screen_name': 'pyladies'},
     {'id': 2544208537,
      'id_str': '2544208537',
      'indices': [22, 34],
      'name': 'Django Girls',
      'screen_name': 'djangogirls'}]},
   'favorite_count': 3,
   'favorited': False,
   'geo': None,
   'id': 658224085151948801,
   'id_str': '658224085151948801',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 4,
   'retweeted': False,
   'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
   'text': '[ANN] @pyladies &amp; @djangogirls lunch at restaurant. Look for me. #pyconie',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sun Dec 17 12:45:54 +0000 2006',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'A Pythonista (I think I can call myself that nowadays). So a coder & a tech event organiser. I ♥ Python (after my hubby, of course).',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'about.me/whykay',
        'expanded_url': 'http://about.me/whykay',
        'indices': [0, 20],
        'url': 'http://t.co/LAKRqfvw'}]}},
    'favourites_count': 1616,
    'follow_request_sent': False,
    'followers_count': 1260,
    'following': False,
    'friends_count': 376,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 75483,
    'id_str': '75483',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 133,
    'location': 'Dublin',
    'name': 'whykay',
    'notifications': False,
    'profile_background_color': '07090B',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
    'profile_background_tile': True,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/75483/1354053976',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
    'profile_link_color': 'C34242',
    'profile_sidebar_border_color': 'BFBFBF',
    'profile_sidebar_fill_color': 'C9C9C9',
    'profile_text_color': '1C1F23',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'whykay',
    'statuses_count': 22056,
    'time_zone': 'Dublin',
    'url': 'http://t.co/LAKRqfvw',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:09:33 +0000 2015',
   'entities': {'hashtags': [{'indices': [32, 40], 'text': 'pyconie'}],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658223865609474048,
   'id_str': '658223865609474048',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
   'text': 'Waiting for keynote to start at #pyconie.   Late night for some last night. :-)',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sun Dec 17 12:45:54 +0000 2006',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'A Pythonista (I think I can call myself that nowadays). So a coder & a tech event organiser. I ♥ Python (after my hubby, of course).',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'about.me/whykay',
        'expanded_url': 'http://about.me/whykay',
        'indices': [0, 20],
        'url': 'http://t.co/LAKRqfvw'}]}},
    'favourites_count': 1616,
    'follow_request_sent': False,
    'followers_count': 1260,
    'following': False,
    'friends_count': 376,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 75483,
    'id_str': '75483',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 133,
    'location': 'Dublin',
    'name': 'whykay',
    'notifications': False,
    'profile_background_color': '07090B',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
    'profile_background_tile': True,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/75483/1354053976',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
    'profile_link_color': 'C34242',
    'profile_sidebar_border_color': 'BFBFBF',
    'profile_sidebar_fill_color': 'C9C9C9',
    'profile_text_color': '1C1F23',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'whykay',
    'statuses_count': 22056,
    'time_zone': 'Dublin',
    'url': 'http://t.co/LAKRqfvw',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:04:00 +0000 2015',
   'entities': {'hashtags': [{'indices': [118, 126], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 75483,
      'id_str': '75483',
      'indices': [3, 10],
      'name': 'whykay',
      'screen_name': 'whykay'},
     {'id': 284739139,
      'id_str': '284739139',
      'indices': [12, 21],
      'name': 'PyLadies',
      'screen_name': 'pyladies'},
     {'id': 1596781705,
      'id_str': '1596781705',
      'indices': [23, 35],
      'name': 'PyLadiesDub',
      'screen_name': 'PyLadiesDub'},
     {'id': 2544208537,
      'id_str': '2544208537',
      'indices': [44, 56],
      'name': 'Django Girls',
      'screen_name': 'djangogirls'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658222469954826240,
   'id_str': '658222469954826240',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 5,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sat Oct 24 18:28:03 +0000 2015',
    'entities': {'hashtags': [{'indices': [106, 114], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 284739139,
       'id_str': '284739139',
       'indices': [0, 9],
       'name': 'PyLadies',
       'screen_name': 'pyladies'},
      {'id': 1596781705,
       'id_str': '1596781705',
       'indices': [11, 23],
       'name': 'PyLadiesDub',
       'screen_name': 'PyLadiesDub'},
      {'id': 2544208537,
       'id_str': '2544208537',
       'indices': [32, 44],
       'name': 'Django Girls',
       'screen_name': 'djangogirls'}]},
    'favorite_count': 1,
    'favorited': False,
    'geo': None,
    'id': 657986928164388864,
    'id_str': '657986928164388864',
    'in_reply_to_screen_name': 'pyladies',
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': 284739139,
    'in_reply_to_user_id_str': '284739139',
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 5,
    'retweeted': False,
    'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
    'text': '@PyLadies (@PyLadiesDub ) &amp; @djangogirls lunch meet tomorrow at restaurant. Interested? Come join us. #PyConIE',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sun Dec 17 12:45:54 +0000 2006',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'A Pythonista (I think I can call myself that nowadays). So a coder & a tech event organiser. I ♥ Python (after my hubby, of course).',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'about.me/whykay',
         'expanded_url': 'http://about.me/whykay',
         'indices': [0, 20],
         'url': 'http://t.co/LAKRqfvw'}]}},
     'favourites_count': 1616,
     'follow_request_sent': False,
     'followers_count': 1260,
     'following': False,
     'friends_count': 376,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 75483,
     'id_str': '75483',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 133,
     'location': 'Dublin',
     'name': 'whykay',
     'notifications': False,
     'profile_background_color': '07090B',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/75483/1354053976',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_link_color': 'C34242',
     'profile_sidebar_border_color': 'BFBFBF',
     'profile_sidebar_fill_color': 'C9C9C9',
     'profile_text_color': '1C1F23',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'whykay',
     'statuses_count': 22056,
     'time_zone': 'Dublin',
     'url': 'http://t.co/LAKRqfvw',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @whykay: @PyLadies (@PyLadiesDub ) &amp; @djangogirls lunch meet tomorrow at restaurant. Interested? Come join us. #PyConIE',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Wed May 30 16:11:48 +0000 2012',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'coding convert | STEM enthusiast | city cyclist | escaped Texan | cat cuddler | hammock napper | smile sharer',
    'entities': {'description': {'urls': []}},
    'favourites_count': 253,
    'follow_request_sent': False,
    'followers_count': 81,
    'following': False,
    'friends_count': 400,
    'geo_enabled': False,
    'has_extended_profile': True,
    'id': 594710722,
    'id_str': '594710722',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 4,
    'location': 'Dublin City, Ireland',
    'name': 'Lisa Cavern',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme2/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme2/bg.gif',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/594710722/1358679969',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/645221414790930433/coIchOzK_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/645221414790930433/coIchOzK_normal.jpg',
    'profile_link_color': '9266CC',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'anninireland',
    'statuses_count': 213,
    'time_zone': 'Dublin',
    'url': None,
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 10:02:39 +0000 2015',
   'entities': {'hashtags': [{'indices': [43, 50], 'text': 'Python'},
     {'indices': [84, 92], 'text': 'pyconie'}],
    'symbols': [],
    'urls': [{'display_url': 'slideshare.net/brianbrazil/be…',
      'expanded_url': 'http://www.slideshare.net/brianbrazil/better-monitoring-for-python-inclusive-monitoring-with-prometheus-pycon-ireland-lightning-talk',
      'indices': [93, 116],
      'url': 'https://t.co/IfA0n58prb'},
     {'display_url': 'github.com/prometheus/cli…',
      'expanded_url': 'https://github.com/prometheus/client_python',
      'indices': [117, 140],
      'url': 'https://t.co/8Ta2QagIRa'}],
    'user_mentions': [{'id': 3328053545,
      'id_str': '3328053545',
      'indices': [3, 19],
      'name': 'Robust Perception',
      'screen_name': 'RobustPerceiver'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658222130262360064,
   'id_str': '658222130262360064',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 09:11:48 +0000 2015',
    'entities': {'hashtags': [{'indices': [22, 29], 'text': 'Python'},
      {'indices': [63, 71], 'text': 'pyconie'}],
     'symbols': [],
     'urls': [{'display_url': 'slideshare.net/brianbrazil/be…',
       'expanded_url': 'http://www.slideshare.net/brianbrazil/better-monitoring-for-python-inclusive-monitoring-with-prometheus-pycon-ireland-lightning-talk',
       'indices': [72, 95],
       'url': 'https://t.co/IfA0n58prb'},
      {'display_url': 'github.com/prometheus/cli…',
       'expanded_url': 'https://github.com/prometheus/client_python',
       'indices': [96, 119],
       'url': 'https://t.co/8Ta2QagIRa'}],
     'user_mentions': []},
    'favorite_count': 7,
    'favorited': False,
    'geo': None,
    'id': 658209331092041728,
    'id_str': '658209331092041728',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': 'Better monitoring for #Python, slides for my lightning talk at #pyconie https://t.co/IfA0n58prb https://t.co/8Ta2QagIRa',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Mon Jun 15 22:08:49 +0000 2015',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Helping organisations scale and improve their customer-serving IT infrastructure though through better practices and @PrometheusIO',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'robustperception.io',
         'expanded_url': 'http://www.robustperception.io',
         'indices': [0, 22],
         'url': 'http://t.co/MvpiQeXplt'}]}},
     'favourites_count': 0,
     'follow_request_sent': False,
     'followers_count': 67,
     'following': False,
     'friends_count': 58,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 3328053545,
     'id_str': '3328053545',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 3,
     'location': 'Dublin, Ireland',
     'name': 'Robust Perception',
     'notifications': False,
     'profile_background_color': '000000',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/3328053545/1437869248',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/625097227271319552/jqTmGnHJ_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/625097227271319552/jqTmGnHJ_normal.png',
     'profile_link_color': '3B94D9',
     'profile_sidebar_border_color': '000000',
     'profile_sidebar_fill_color': '000000',
     'profile_text_color': '000000',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'RobustPerceiver',
     'statuses_count': 110,
     'time_zone': 'Dublin',
     'url': 'http://t.co/MvpiQeXplt',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'RT @RobustPerceiver: Better monitoring for #Python, slides for my lightning talk at #pyconie https://t.co/IfA0n58prb https://t.co/8Ta2QagIRa',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sat Jun 27 09:42:53 +0000 2015',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'Head of Platform @BYAnalytics_en',
    'entities': {'description': {'urls': []}},
    'favourites_count': 0,
    'follow_request_sent': False,
    'followers_count': 21,
    'following': False,
    'friends_count': 40,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 3347340147,
    'id_str': '3347340147',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'de',
    'listed_count': 2,
    'location': '',
    'name': 'Manuel Bahr',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/656902443360473088/Cm9nGaSU_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/656902443360473088/Cm9nGaSU_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'manuelbahr',
    'statuses_count': 38,
    'time_zone': 'Pacific Time (US & Canada)',
    'url': None,
    'utc_offset': -25200,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 09:59:18 +0000 2015',
   'entities': {'hashtags': [{'indices': [24, 39], 'text': 'FoodForThought'},
     {'indices': [40, 48], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [{'display_url': 'python.org/dev/peps/pep-0…',
      'expanded_url': 'https://www.python.org/dev/peps/pep-0020/',
      'indices': [0, 23],
      'url': 'https://t.co/yNyqySeCvN'}],
    'user_mentions': []},
   'favorite_count': 2,
   'favorited': False,
   'geo': None,
   'id': 658221287735709696,
   'id_str': '658221287735709696',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'und',
   'metadata': {'iso_language_code': 'und', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'https://t.co/yNyqySeCvN #FoodForThought #PyConIE',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue May 14 19:07:53 +0000 2013',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Software developer, video game enthusiast, and fan of all things Linux. Builds teams that build tech.  Lead of Engineering Tools at Unity Technologies.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'natoshabard.com',
        'expanded_url': 'http://natoshabard.com',
        'indices': [0, 22],
        'url': 'http://t.co/txrloUHSes'}]}},
    'favourites_count': 74,
    'follow_request_sent': False,
    'followers_count': 975,
    'following': False,
    'friends_count': 171,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 1428626108,
    'id_str': '1428626108',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 34,
    'location': 'Copenhagen, Denmark',
    'name': "Na'Tosha Bard",
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/628474484920455168/LBX19gtV_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/628474484920455168/LBX19gtV_normal.jpg',
    'profile_link_color': 'CC10A3',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'natosha_bard',
    'statuses_count': 349,
    'time_zone': None,
    'url': 'http://t.co/txrloUHSes',
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 09:58:48 +0000 2015',
   'entities': {'hashtags': [{'indices': [94, 102], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [{'display_url': 'blueface.ie/careers/python…',
      'expanded_url': 'https://www.blueface.ie/careers/python-developer',
      'indices': [69, 92],
      'url': 'https://t.co/vdu3xhWa59'}],
    'user_mentions': []},
   'favorite_count': 1,
   'favorited': False,
   'geo': None,
   'id': 658221162124746752,
   'id_str': '658221162124746752',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': "Python developers we'd love to hear from you. We're hiring in Dublin https://t.co/vdu3xhWa59  #PyConIE",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Mon Mar 23 14:17:37 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Blueface is a cloud telecoms provider helping businesses across landline, mobile, hosted pbx, call conferencing, lync, and virtual fax.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'blueface.ie',
        'expanded_url': 'http://www.blueface.ie',
        'indices': [0, 22],
        'url': 'http://t.co/ql6ZyFKiZl'}]}},
    'favourites_count': 254,
    'follow_request_sent': False,
    'followers_count': 1755,
    'following': False,
    'friends_count': 1786,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 26008174,
    'id_str': '26008174',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 49,
    'location': 'Dublin (Ireland)',
    'name': 'Blueface',
    'notifications': False,
    'profile_background_color': '5EB9D4',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/378800000169225526/dghkNggU.jpeg',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/378800000169225526/dghkNggU.jpeg',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/26008174/1412329533',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/470940838072025088/70_IMizs_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/470940838072025088/70_IMizs_normal.png',
    'profile_link_color': '00B4F0',
    'profile_sidebar_border_color': 'FFFFFF',
    'profile_sidebar_fill_color': 'EFEFEF',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'BluefaceLtd',
    'statuses_count': 2388,
    'time_zone': 'Dublin',
    'url': 'http://t.co/ql6ZyFKiZl',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 09:56:39 +0000 2015',
   'entities': {'hashtags': [{'indices': [0, 10], 'text': 'Demonware'},
     {'indices': [27, 35], 'text': 'PyConIE'}],
    'media': [{'display_url': 'pic.twitter.com/96wuYOXVXs',
      'expanded_url': 'http://twitter.com/patclaffey/status/658220618614218752/photo/1',
      'id': 658220618446458880,
      'id_str': '658220618446458880',
      'indices': [37, 60],
      'media_url': 'http://pbs.twimg.com/media/CSJ4KkJW0AA4BoL.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/CSJ4KkJW0AA4BoL.jpg',
      'sizes': {'large': {'h': 716, 'resize': 'fit', 'w': 960},
       'medium': {'h': 447, 'resize': 'fit', 'w': 600},
       'small': {'h': 253, 'resize': 'fit', 'w': 340},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'type': 'photo',
      'url': 'https://t.co/96wuYOXVXs'}],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658220618614218752,
   'id_str': '658220618614218752',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://www.apple.com" rel="nofollow">iOS</a>',
   'text': '#Demonware product demo at #PyConIE. https://t.co/96wuYOXVXs',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue May 12 16:51:35 +0000 2009',
    'default_profile': True,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 2,
    'follow_request_sent': False,
    'followers_count': 13,
    'following': False,
    'friends_count': 22,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 39540310,
    'id_str': '39540310',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 1,
    'location': 'Dublin',
    'name': 'Patrick Claffey',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/532218920153800705/vAKNSGKm_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/532218920153800705/vAKNSGKm_normal.jpeg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'patclaffey',
    'statuses_count': 38,
    'time_zone': 'Amsterdam',
    'url': None,
    'utc_offset': 3600,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 09:53:55 +0000 2015',
   'entities': {'hashtags': [{'indices': [15, 23], 'text': 'PyConIE'},
     {'indices': [32, 42], 'text': 'Demonware'},
     {'indices': [43, 52], 'text': 'PythonIE'}],
    'media': [{'display_url': 'pic.twitter.com/BNn5Oornpe',
      'expanded_url': 'http://twitter.com/patclaffey/status/658219931864027136/photo/1',
      'id': 658219931717279744,
      'id_str': '658219931717279744',
      'indices': [53, 76],
      'media_url': 'http://pbs.twimg.com/media/CSJ3il4XIAA7jSq.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/CSJ3il4XIAA7jSq.jpg',
      'sizes': {'large': {'h': 960, 'resize': 'fit', 'w': 716},
       'medium': {'h': 804, 'resize': 'fit', 'w': 600},
       'small': {'h': 455, 'resize': 'fit', 'w': 340},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'type': 'photo',
      'url': 'https://t.co/BNn5Oornpe'}],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658219931864027136,
   'id_str': '658219931864027136',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://www.apple.com" rel="nofollow">iOS</a>',
   'text': 'Deep jive with #PyConIE sponsor #Demonware #PythonIE https://t.co/BNn5Oornpe',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue May 12 16:51:35 +0000 2009',
    'default_profile': True,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 2,
    'follow_request_sent': False,
    'followers_count': 13,
    'following': False,
    'friends_count': 22,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 39540310,
    'id_str': '39540310',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 1,
    'location': 'Dublin',
    'name': 'Patrick Claffey',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/532218920153800705/vAKNSGKm_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/532218920153800705/vAKNSGKm_normal.jpeg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'patclaffey',
    'statuses_count': 38,
    'time_zone': 'Amsterdam',
    'url': None,
    'utc_offset': 3600,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 09:51:37 +0000 2015',
   'entities': {'hashtags': [{'indices': [12, 20], 'text': 'PyConIE'},
     {'indices': [68, 77], 'text': 'opendata'}],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 4,
   'favorited': False,
   'geo': None,
   'id': 658219350760013824,
   'id_str': '658219350760013824',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'En route to #PyConIE after extra hour in leaba! Talking about using #opendata at 10:50',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Feb 17 10:25:07 +0000 2009',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'Linked & Open Data, Founder of Derilinx',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'derilinx.com',
        'expanded_url': 'http://www.derilinx.com',
        'indices': [0, 22],
        'url': 'http://t.co/sqlMzI7XP4'}]}},
    'favourites_count': 174,
    'follow_request_sent': False,
    'followers_count': 1165,
    'following': False,
    'friends_count': 1403,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 21078662,
    'id_str': '21078662',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 93,
    'location': 'Dublin/London',
    'name': 'Deirdre Lee',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/590876062868963329/X5rKbkrs_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/590876062868963329/X5rKbkrs_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'deirdrelee',
    'statuses_count': 1037,
    'time_zone': 'Dublin',
    'url': 'http://t.co/sqlMzI7XP4',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 09:49:55 +0000 2015',
   'entities': {'hashtags': [{'indices': [104, 112], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 75483,
      'id_str': '75483',
      'indices': [3, 10],
      'name': 'whykay',
      'screen_name': 'whykay'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658218926632017920,
   'id_str': '658218926632017920',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 07:59:00 +0000 2015',
    'entities': {'hashtags': [{'indices': [92, 100], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 1,
    'favorited': False,
    'geo': None,
    'id': 658191010317639680,
    'id_str': '658191010317639680',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 1,
    'retweeted': False,
    'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
    'text': 'Wish cats understood hour changes earlier this morning! Anyhoo, looking forward to day 2 of #PyConIE!!! *yay* 😺😺😺',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sun Dec 17 12:45:54 +0000 2006',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'A Pythonista (I think I can call myself that nowadays). So a coder & a tech event organiser. I ♥ Python (after my hubby, of course).',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'about.me/whykay',
         'expanded_url': 'http://about.me/whykay',
         'indices': [0, 20],
         'url': 'http://t.co/LAKRqfvw'}]}},
     'favourites_count': 1616,
     'follow_request_sent': False,
     'followers_count': 1260,
     'following': False,
     'friends_count': 376,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 75483,
     'id_str': '75483',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 133,
     'location': 'Dublin',
     'name': 'whykay',
     'notifications': False,
     'profile_background_color': '07090B',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/75483/1354053976',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_link_color': 'C34242',
     'profile_sidebar_border_color': 'BFBFBF',
     'profile_sidebar_fill_color': 'C9C9C9',
     'profile_text_color': '1C1F23',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'whykay',
     'statuses_count': 22056,
     'time_zone': 'Dublin',
     'url': 'http://t.co/LAKRqfvw',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
   'text': 'RT @whykay: Wish cats understood hour changes earlier this morning! Anyhoo, looking forward to day 2 of #PyConIE!!! *yay* 😺😺😺',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Wed Apr 11 01:13:05 +0000 2012',
    'default_profile': True,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 147,
    'follow_request_sent': False,
    'followers_count': 165,
    'following': False,
    'friends_count': 124,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 550668963,
    'id_str': '550668963',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 12,
    'location': '',
    'name': 'dan kersten',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/637589008885882881/ff4H2tR5_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/637589008885882881/ff4H2tR5_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'danielytics',
    'statuses_count': 532,
    'time_zone': 'Dublin',
    'url': None,
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 09:45:41 +0000 2015',
   'entities': {'hashtags': [{'indices': [43, 50], 'text': 'Python'},
     {'indices': [84, 92], 'text': 'pyconie'}],
    'symbols': [],
    'urls': [{'display_url': 'slideshare.net/brianbrazil/be…',
      'expanded_url': 'http://www.slideshare.net/brianbrazil/better-monitoring-for-python-inclusive-monitoring-with-prometheus-pycon-ireland-lightning-talk',
      'indices': [93, 116],
      'url': 'https://t.co/IfA0n58prb'},
     {'display_url': 'github.com/prometheus/cli…',
      'expanded_url': 'https://github.com/prometheus/client_python',
      'indices': [117, 140],
      'url': 'https://t.co/8Ta2QagIRa'}],
    'user_mentions': [{'id': 3328053545,
      'id_str': '3328053545',
      'indices': [3, 19],
      'name': 'Robust Perception',
      'screen_name': 'RobustPerceiver'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658217859101933568,
   'id_str': '658217859101933568',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 09:11:48 +0000 2015',
    'entities': {'hashtags': [{'indices': [22, 29], 'text': 'Python'},
      {'indices': [63, 71], 'text': 'pyconie'}],
     'symbols': [],
     'urls': [{'display_url': 'slideshare.net/brianbrazil/be…',
       'expanded_url': 'http://www.slideshare.net/brianbrazil/better-monitoring-for-python-inclusive-monitoring-with-prometheus-pycon-ireland-lightning-talk',
       'indices': [72, 95],
       'url': 'https://t.co/IfA0n58prb'},
      {'display_url': 'github.com/prometheus/cli…',
       'expanded_url': 'https://github.com/prometheus/client_python',
       'indices': [96, 119],
       'url': 'https://t.co/8Ta2QagIRa'}],
     'user_mentions': []},
    'favorite_count': 7,
    'favorited': False,
    'geo': None,
    'id': 658209331092041728,
    'id_str': '658209331092041728',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': 'Better monitoring for #Python, slides for my lightning talk at #pyconie https://t.co/IfA0n58prb https://t.co/8Ta2QagIRa',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Mon Jun 15 22:08:49 +0000 2015',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Helping organisations scale and improve their customer-serving IT infrastructure though through better practices and @PrometheusIO',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'robustperception.io',
         'expanded_url': 'http://www.robustperception.io',
         'indices': [0, 22],
         'url': 'http://t.co/MvpiQeXplt'}]}},
     'favourites_count': 0,
     'follow_request_sent': False,
     'followers_count': 67,
     'following': False,
     'friends_count': 58,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 3328053545,
     'id_str': '3328053545',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 3,
     'location': 'Dublin, Ireland',
     'name': 'Robust Perception',
     'notifications': False,
     'profile_background_color': '000000',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/3328053545/1437869248',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/625097227271319552/jqTmGnHJ_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/625097227271319552/jqTmGnHJ_normal.png',
     'profile_link_color': '3B94D9',
     'profile_sidebar_border_color': '000000',
     'profile_sidebar_fill_color': '000000',
     'profile_text_color': '000000',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'RobustPerceiver',
     'statuses_count': 110,
     'time_zone': 'Dublin',
     'url': 'http://t.co/MvpiQeXplt',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @RobustPerceiver: Better monitoring for #Python, slides for my lightning talk at #pyconie https://t.co/IfA0n58prb https://t.co/8Ta2QagIRa',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sat Aug 16 20:49:33 +0000 2014',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Software Engineer working on distributed systems at @BYAnalytics_en',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'github.com/StephanErb',
        'expanded_url': 'https://github.com/StephanErb',
        'indices': [0, 23],
        'url': 'https://t.co/aHcOqx6aGd'}]}},
    'favourites_count': 77,
    'follow_request_sent': False,
    'followers_count': 40,
    'following': False,
    'friends_count': 103,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 2738086314,
    'id_str': '2738086314',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'de',
    'listed_count': 4,
    'location': 'Karlsruhe, Germany',
    'name': 'Stephan Erb',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2738086314/1439762397',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/633027977002008576/UFWMpz_F_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/633027977002008576/UFWMpz_F_normal.png',
    'profile_link_color': '89C9FA',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'ErbStephan',
    'statuses_count': 84,
    'time_zone': 'Berlin',
    'url': 'https://t.co/aHcOqx6aGd',
    'utc_offset': 3600,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 09:22:47 +0000 2015',
   'entities': {'hashtags': [{'indices': [95, 103], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [{'display_url': 'timeanddate.com/worldclock/ire…',
      'expanded_url': 'http://www.timeanddate.com/worldclock/ireland/dublin',
      'indices': [71, 94],
      'url': 'https://t.co/h6qHpZDWWI'}],
    'user_mentions': []},
   'favorite_count': 1,
   'favorited': False,
   'geo': None,
   'id': 658212096962875392,
   'id_str': '658212096962875392',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'Daylight Savings Time ended last night. Dublin is now the same as GMT: https://t.co/h6qHpZDWWI #PyConIE',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Mon Apr 27 09:43:21 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Entrepreneur, technologist and co-founder of @pagefair',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'pagefair.com',
        'expanded_url': 'http://pagefair.com',
        'indices': [0, 22],
        'url': 'http://t.co/qqUL7jTwQA'}]}},
    'favourites_count': 14,
    'follow_request_sent': False,
    'followers_count': 188,
    'following': False,
    'friends_count': 269,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 35708573,
    'id_str': '35708573',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 11,
    'location': 'Dublin, Ireland',
    'name': 'Brian McDonnell',
    'notifications': False,
    'profile_background_color': '1A1B1F',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme9/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme9/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/2193116514/gravatar_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/2193116514/gravatar_normal.jpeg',
    'profile_link_color': '2FC2EF',
    'profile_sidebar_border_color': '181A1E',
    'profile_sidebar_fill_color': '252429',
    'profile_text_color': '666666',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'mcdonnellb',
    'statuses_count': 228,
    'time_zone': 'Dublin',
    'url': 'http://t.co/qqUL7jTwQA',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 09:20:43 +0000 2015',
   'entities': {'hashtags': [{'indices': [54, 67], 'text': 'DeepLearning'},
     {'indices': [103, 111], 'text': 'PyConIE'}],
    'media': [{'display_url': 'pic.twitter.com/NQJwJpOvqY',
      'expanded_url': 'http://twitter.com/shane_a_lynn/status/657908706416467968/photo/1',
      'id': 657908697885245440,
      'id_str': '657908697885245440',
      'indices': [116, 139],
      'media_url': 'http://pbs.twimg.com/media/CSFceZgXAAAV4in.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/CSFceZgXAAAV4in.jpg',
      'sizes': {'large': {'h': 768, 'resize': 'fit', 'w': 1024},
       'medium': {'h': 450, 'resize': 'fit', 'w': 600},
       'small': {'h': 255, 'resize': 'fit', 'w': 340},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 657908706416467968,
      'source_status_id_str': '657908706416467968',
      'source_user_id': 244517265,
      'source_user_id_str': '244517265',
      'type': 'photo',
      'url': 'https://t.co/NQJwJpOvqY'}],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658211575581536256,
   'id_str': '658211575581536256',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://ifttt.com" rel="nofollow">IFTTT</a>',
   'text': 'RT aidotech: RT shane_a_lynn: Getting stuck into some #DeepLearning now with bargava and raghothams at #PyConIE Py… https://t.co/NQJwJpOvqY',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sat Apr 18 02:38:53 +0000 2015',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'Artificial Intelligence meets On-Demand Economy.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'aidotech.com',
        'expanded_url': 'http://www.aidotech.com',
        'indices': [0, 22],
        'url': 'http://t.co/XFJMNgjoKt'}]}},
    'favourites_count': 108,
    'follow_request_sent': False,
    'followers_count': 986,
    'following': True,
    'friends_count': 1079,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 3161803394,
    'id_str': '3161803394',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 1001,
    'location': 'phoenix ',
    'name': 'AiDO',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/3161803394/1429326543',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/589260492192944128/-iwxG3ZA_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/589260492192944128/-iwxG3ZA_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'aidotech',
    'statuses_count': 155998,
    'time_zone': None,
    'url': 'http://t.co/XFJMNgjoKt',
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 09:20:21 +0000 2015',
   'entities': {'hashtags': [{'indices': [8, 17], 'text': 'Pythonic'},
     {'indices': [46, 54], 'text': 'PyConIE'},
     {'indices': [65, 72], 'text': 'Python'},
     {'indices': [87, 93], 'text': 'PyCon'},
     {'indices': [94, 106], 'text': 'pyconie2015'}],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 1,
   'favorited': False,
   'geo': None,
   'id': 658211482434445312,
   'id_str': '658211482434445312',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'fr',
   'metadata': {'iso_language_code': 'fr', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': "Weekend #Pythonic baht :D Hier et aujourd'hui #PyConIE et demain #Python sprints &lt;3 #PyCon #pyconie2015",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Jan 25 20:56:17 +0000 2011',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'Lazy. Geeky. Trolly.',
    'entities': {'description': {'urls': []}},
    'favourites_count': 43,
    'follow_request_sent': False,
    'followers_count': 1737,
    'following': False,
    'friends_count': 130,
    'geo_enabled': True,
    'has_extended_profile': True,
    'id': 242892269,
    'id_str': '242892269',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 43,
    'location': 'Dublin City, Ireland',
    'name': 'Ajak Saksow',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/242892269/1403258832',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/565893046081187840/Vse6WBj5_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/565893046081187840/Vse6WBj5_normal.jpeg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'Saksow',
    'statuses_count': 34259,
    'time_zone': 'Dublin',
    'url': None,
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 09:11:48 +0000 2015',
   'entities': {'hashtags': [{'indices': [22, 29], 'text': 'Python'},
     {'indices': [63, 71], 'text': 'pyconie'}],
    'symbols': [],
    'urls': [{'display_url': 'slideshare.net/brianbrazil/be…',
      'expanded_url': 'http://www.slideshare.net/brianbrazil/better-monitoring-for-python-inclusive-monitoring-with-prometheus-pycon-ireland-lightning-talk',
      'indices': [72, 95],
      'url': 'https://t.co/IfA0n58prb'},
     {'display_url': 'github.com/prometheus/cli…',
      'expanded_url': 'https://github.com/prometheus/client_python',
      'indices': [96, 119],
      'url': 'https://t.co/8Ta2QagIRa'}],
    'user_mentions': []},
   'favorite_count': 7,
   'favorited': False,
   'geo': None,
   'id': 658209331092041728,
   'id_str': '658209331092041728',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 3,
   'retweeted': False,
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'Better monitoring for #Python, slides for my lightning talk at #pyconie https://t.co/IfA0n58prb https://t.co/8Ta2QagIRa',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Mon Jun 15 22:08:49 +0000 2015',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Helping organisations scale and improve their customer-serving IT infrastructure though through better practices and @PrometheusIO',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'robustperception.io',
        'expanded_url': 'http://www.robustperception.io',
        'indices': [0, 22],
        'url': 'http://t.co/MvpiQeXplt'}]}},
    'favourites_count': 0,
    'follow_request_sent': False,
    'followers_count': 67,
    'following': False,
    'friends_count': 58,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 3328053545,
    'id_str': '3328053545',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 3,
    'location': 'Dublin, Ireland',
    'name': 'Robust Perception',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/3328053545/1437869248',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/625097227271319552/jqTmGnHJ_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/625097227271319552/jqTmGnHJ_normal.png',
    'profile_link_color': '3B94D9',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'RobustPerceiver',
    'statuses_count': 110,
    'time_zone': 'Dublin',
    'url': 'http://t.co/MvpiQeXplt',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 09:11:26 +0000 2015',
   'entities': {'hashtags': [{'indices': [55, 68], 'text': 'DeepLearning'},
     {'indices': [104, 112], 'text': 'PyConIE'}],
    'media': [{'display_url': 'pic.twitter.com/NQJwJpOvqY',
      'expanded_url': 'http://twitter.com/shane_a_lynn/status/657908706416467968/photo/1',
      'id': 657908697885245440,
      'id_str': '657908697885245440',
      'indices': [139, 140],
      'media_url': 'http://pbs.twimg.com/media/CSFceZgXAAAV4in.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/CSFceZgXAAAV4in.jpg',
      'sizes': {'large': {'h': 768, 'resize': 'fit', 'w': 1024},
       'medium': {'h': 450, 'resize': 'fit', 'w': 600},
       'small': {'h': 255, 'resize': 'fit', 'w': 340},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 657908706416467968,
      'source_status_id_str': '657908706416467968',
      'source_user_id': 244517265,
      'source_user_id_str': '244517265',
      'type': 'photo',
      'url': 'https://t.co/NQJwJpOvqY'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 3161803394,
      'id_str': '3161803394',
      'indices': [3, 12],
      'name': 'AiDO',
      'screen_name': 'aidotech'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658209240104873984,
   'id_str': '658209240104873984',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 1,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sun Oct 25 08:50:20 +0000 2015',
    'entities': {'hashtags': [{'indices': [41, 54], 'text': 'DeepLearning'},
      {'indices': [90, 98], 'text': 'PyConIE'}],
     'media': [{'display_url': 'pic.twitter.com/NQJwJpOvqY',
       'expanded_url': 'http://twitter.com/shane_a_lynn/status/657908706416467968/photo/1',
       'id': 657908697885245440,
       'id_str': '657908697885245440',
       'indices': [116, 139],
       'media_url': 'http://pbs.twimg.com/media/CSFceZgXAAAV4in.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/CSFceZgXAAAV4in.jpg',
       'sizes': {'large': {'h': 768, 'resize': 'fit', 'w': 1024},
        'medium': {'h': 450, 'resize': 'fit', 'w': 600},
        'small': {'h': 255, 'resize': 'fit', 'w': 340},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'source_status_id': 657908706416467968,
       'source_status_id_str': '657908706416467968',
       'source_user_id': 244517265,
       'source_user_id_str': '244517265',
       'type': 'photo',
       'url': 'https://t.co/NQJwJpOvqY'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 1,
    'favorited': False,
    'geo': None,
    'id': 658203931860955137,
    'id_str': '658203931860955137',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 1,
    'retweeted': False,
    'source': '<a href="http://ifttt.com" rel="nofollow">IFTTT</a>',
    'text': 'RT shane_a_lynn: Getting stuck into some #DeepLearning now with bargava and raghothams at #PyConIE PythonIreland #… https://t.co/NQJwJpOvqY',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sat Apr 18 02:38:53 +0000 2015',
     'default_profile': True,
     'default_profile_image': False,
     'description': 'Artificial Intelligence meets On-Demand Economy.',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'aidotech.com',
         'expanded_url': 'http://www.aidotech.com',
         'indices': [0, 22],
         'url': 'http://t.co/XFJMNgjoKt'}]}},
     'favourites_count': 108,
     'follow_request_sent': False,
     'followers_count': 986,
     'following': True,
     'friends_count': 1079,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 3161803394,
     'id_str': '3161803394',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 1001,
     'location': 'phoenix ',
     'name': 'AiDO',
     'notifications': False,
     'profile_background_color': 'C0DEED',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/3161803394/1429326543',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/589260492192944128/-iwxG3ZA_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/589260492192944128/-iwxG3ZA_normal.jpg',
     'profile_link_color': '0084B4',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'aidotech',
     'statuses_count': 155998,
     'time_zone': None,
     'url': 'http://t.co/XFJMNgjoKt',
     'utc_offset': None,
     'verified': False}},
   'source': '<a href="http://wcmckee.com" rel="nofollow">wcmtwet</a>',
   'text': 'RT @aidotech: RT shane_a_lynn: Getting stuck into some #DeepLearning now with bargava and raghothams at #PyConIE PythonIreland #… https://t…',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sat Sep 20 08:09:39 +0000 2014',
    'default_profile': False,
    'default_profile_image': False,
    'description': "Open Source Python Software and Web Development. AV volunteer tech confs. I can't endorse my own tweets.",
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'wcmckee.com',
        'expanded_url': 'http://wcmckee.com',
        'indices': [0, 22],
        'url': 'http://t.co/KQYI4xVTZd'}]}},
    'favourites_count': 3462,
    'follow_request_sent': False,
    'followers_count': 778,
    'following': False,
    'friends_count': 889,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 2821347210,
    'id_str': '2821347210',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 696,
    'location': 'Hamilton City, New Zealand',
    'name': 'wcmckee',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2821347210/1442397712',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/621211385746161664/tGchJstD_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/621211385746161664/tGchJstD_normal.jpg',
    'profile_link_color': 'FFCC4D',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'wcmckeedotcom',
    'statuses_count': 12267,
    'time_zone': 'Wellington',
    'url': 'http://t.co/KQYI4xVTZd',
    'utc_offset': 46800,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 08:50:20 +0000 2015',
   'entities': {'hashtags': [{'indices': [41, 54], 'text': 'DeepLearning'},
     {'indices': [90, 98], 'text': 'PyConIE'}],
    'media': [{'display_url': 'pic.twitter.com/NQJwJpOvqY',
      'expanded_url': 'http://twitter.com/shane_a_lynn/status/657908706416467968/photo/1',
      'id': 657908697885245440,
      'id_str': '657908697885245440',
      'indices': [116, 139],
      'media_url': 'http://pbs.twimg.com/media/CSFceZgXAAAV4in.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/CSFceZgXAAAV4in.jpg',
      'sizes': {'large': {'h': 768, 'resize': 'fit', 'w': 1024},
       'medium': {'h': 450, 'resize': 'fit', 'w': 600},
       'small': {'h': 255, 'resize': 'fit', 'w': 340},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 657908706416467968,
      'source_status_id_str': '657908706416467968',
      'source_user_id': 244517265,
      'source_user_id_str': '244517265',
      'type': 'photo',
      'url': 'https://t.co/NQJwJpOvqY'}],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 1,
   'favorited': False,
   'geo': None,
   'id': 658203931860955137,
   'id_str': '658203931860955137',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 1,
   'retweeted': False,
   'source': '<a href="http://ifttt.com" rel="nofollow">IFTTT</a>',
   'text': 'RT shane_a_lynn: Getting stuck into some #DeepLearning now with bargava and raghothams at #PyConIE PythonIreland #… https://t.co/NQJwJpOvqY',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sat Apr 18 02:38:53 +0000 2015',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'Artificial Intelligence meets On-Demand Economy.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'aidotech.com',
        'expanded_url': 'http://www.aidotech.com',
        'indices': [0, 22],
        'url': 'http://t.co/XFJMNgjoKt'}]}},
    'favourites_count': 108,
    'follow_request_sent': False,
    'followers_count': 986,
    'following': True,
    'friends_count': 1079,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 3161803394,
    'id_str': '3161803394',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 1001,
    'location': 'phoenix ',
    'name': 'AiDO',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/3161803394/1429326543',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/589260492192944128/-iwxG3ZA_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/589260492192944128/-iwxG3ZA_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'aidotech',
    'statuses_count': 155998,
    'time_zone': None,
    'url': 'http://t.co/XFJMNgjoKt',
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 08:50:09 +0000 2015',
   'entities': {'hashtags': [{'indices': [47, 55], 'text': 'pyconIE'}],
    'media': [{'display_url': 'pic.twitter.com/eCw0xhVNEQ',
      'expanded_url': 'http://twitter.com/brightwater98/status/657880398777753600/photo/1',
      'id': 657880390783209472,
      'id_str': '657880390783209472',
      'indices': [56, 79],
      'media_url': 'http://pbs.twimg.com/media/CSFCutVUEAA_NrS.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/CSFCutVUEAA_NrS.jpg',
      'sizes': {'large': {'h': 579, 'resize': 'fit', 'w': 1024},
       'medium': {'h': 339, 'resize': 'fit', 'w': 600},
       'small': {'h': 192, 'resize': 'fit', 'w': 340},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 657880398777753600,
      'source_status_id_str': '657880398777753600',
      'source_user_id': 284601454,
      'source_user_id_str': '284601454',
      'type': 'photo',
      'url': 'https://t.co/eCw0xhVNEQ'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 284601454,
      'id_str': '284601454',
      'indices': [3, 17],
      'name': 'Brightwater Recruit',
      'screen_name': 'brightwater98'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658203882414297088,
   'id_str': '658203882414297088',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 5,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sat Oct 24 11:24:44 +0000 2015',
    'entities': {'hashtags': [{'indices': [28, 36], 'text': 'pyconIE'}],
     'media': [{'display_url': 'pic.twitter.com/eCw0xhVNEQ',
       'expanded_url': 'http://twitter.com/brightwater98/status/657880398777753600/photo/1',
       'id': 657880390783209472,
       'id_str': '657880390783209472',
       'indices': [37, 60],
       'media_url': 'http://pbs.twimg.com/media/CSFCutVUEAA_NrS.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/CSFCutVUEAA_NrS.jpg',
       'sizes': {'large': {'h': 579, 'resize': 'fit', 'w': 1024},
        'medium': {'h': 339, 'resize': 'fit', 'w': 600},
        'small': {'h': 192, 'resize': 'fit', 'w': 340},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/eCw0xhVNEQ'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 5,
    'favorited': False,
    'geo': None,
    'id': 657880398777753600,
    'id_str': '657880398777753600',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 5,
    'retweeted': False,
    'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    'text': 'Brightwater stand. Enjoying #pyconIE https://t.co/eCw0xhVNEQ',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Tue Apr 19 15:58:00 +0000 2011',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Current industry trends & market information, expert career advice and job updates across Dublin & Ireland.  Tel. 01 662 1000\nWant to join us?',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'brightwater.ie/join-brightwat…',
         'expanded_url': 'http://www.brightwater.ie/join-brightwater/become-a-recruiter',
         'indices': [0, 22],
         'url': 'http://t.co/reW1opZgpc'}]}},
     'favourites_count': 242,
     'follow_request_sent': False,
     'followers_count': 7831,
     'following': False,
     'friends_count': 984,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 284601454,
     'id_str': '284601454',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 61,
     'location': 'Dublin, Ireland',
     'name': 'Brightwater Recruit',
     'notifications': False,
     'profile_background_color': 'FFFFFF',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/378800000163469733/gwP6pMii.jpeg',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/378800000163469733/gwP6pMii.jpeg',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/284601454/1428420390',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/471259808314580992/HU-oANnr_normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/471259808314580992/HU-oANnr_normal.jpeg',
     'profile_link_color': '0084B4',
     'profile_sidebar_border_color': 'FFFFFF',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'brightwater98',
     'statuses_count': 4598,
     'time_zone': 'Dublin',
     'url': 'http://t.co/reW1opZgpc',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   'text': 'RT @brightwater98: Brightwater stand. Enjoying #pyconIE https://t.co/eCw0xhVNEQ',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sat Mar 09 19:07:47 +0000 2013',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Follow Emma Anglim, Manager of BrightStar Recruitment, for business support, public sector, retail & sales news and job updates across Ireland. Tel. 01 6620300',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'brightwatersupport.com',
        'expanded_url': 'http://www.brightwatersupport.com',
        'indices': [0, 22],
        'url': 'http://t.co/dmJ4h9mHqT'}]}},
    'favourites_count': 75,
    'follow_request_sent': False,
    'followers_count': 156,
    'following': False,
    'friends_count': 313,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 1255130658,
    'id_str': '1255130658',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 2,
    'location': 'Dublin, Ireland',
    'name': 'Emma Anglim',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/819419867/11727c42b58e69386a857bf65a4f40e8.jpeg',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/819419867/11727c42b58e69386a857bf65a4f40e8.jpeg',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1255130658/1366718286',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/378800000415259557/ea861e42b7aa4ce98f22f93cf01420ac_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/378800000415259557/ea861e42b7aa4ce98f22f93cf01420ac_normal.jpeg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'FFFFFF',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'emmaanglim',
    'statuses_count': 304,
    'time_zone': 'Dublin',
    'url': 'http://t.co/dmJ4h9mHqT',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 08:49:56 +0000 2015',
   'entities': {'hashtags': [{'indices': [63, 71], 'text': 'PyconIE'}],
    'media': [{'display_url': 'pic.twitter.com/HiUhKV3wG0',
      'expanded_url': 'http://twitter.com/brightwater98/status/657961766358503424/photo/1',
      'id': 657961748973027332,
      'id_str': '657961748973027332',
      'indices': [72, 95],
      'media_url': 'http://pbs.twimg.com/media/CSGMuYNVAAQoB9-.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/CSGMuYNVAAQoB9-.jpg',
      'sizes': {'large': {'h': 579, 'resize': 'fit', 'w': 1024},
       'medium': {'h': 339, 'resize': 'fit', 'w': 600},
       'small': {'h': 192, 'resize': 'fit', 'w': 340},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 657961766358503424,
      'source_status_id_str': '657961766358503424',
      'source_user_id': 284601454,
      'source_user_id_str': '284601454',
      'type': 'photo',
      'url': 'https://t.co/HiUhKV3wG0'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 284601454,
      'id_str': '284601454',
      'indices': [3, 17],
      'name': 'Brightwater Recruit',
      'screen_name': 'brightwater98'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658203829326999552,
   'id_str': '658203829326999552',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 6,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sat Oct 24 16:48:04 +0000 2015',
    'entities': {'hashtags': [{'indices': [44, 52], 'text': 'PyconIE'}],
     'media': [{'display_url': 'pic.twitter.com/HiUhKV3wG0',
       'expanded_url': 'http://twitter.com/brightwater98/status/657961766358503424/photo/1',
       'id': 657961748973027332,
       'id_str': '657961748973027332',
       'indices': [53, 76],
       'media_url': 'http://pbs.twimg.com/media/CSGMuYNVAAQoB9-.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/CSGMuYNVAAQoB9-.jpg',
       'sizes': {'large': {'h': 579, 'resize': 'fit', 'w': 1024},
        'medium': {'h': 339, 'resize': 'fit', 'w': 600},
        'small': {'h': 192, 'resize': 'fit', 'w': 340},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/HiUhKV3wG0'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 7,
    'favorited': False,
    'geo': None,
    'id': 657961766358503424,
    'id_str': '657961766358503424',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 6,
    'retweeted': False,
    'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    'text': 'Tom Doyle winner of Brightwater Samsung Tab #PyconIE https://t.co/HiUhKV3wG0',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Tue Apr 19 15:58:00 +0000 2011',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Current industry trends & market information, expert career advice and job updates across Dublin & Ireland.  Tel. 01 662 1000\nWant to join us?',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'brightwater.ie/join-brightwat…',
         'expanded_url': 'http://www.brightwater.ie/join-brightwater/become-a-recruiter',
         'indices': [0, 22],
         'url': 'http://t.co/reW1opZgpc'}]}},
     'favourites_count': 242,
     'follow_request_sent': False,
     'followers_count': 7831,
     'following': False,
     'friends_count': 984,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 284601454,
     'id_str': '284601454',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 61,
     'location': 'Dublin, Ireland',
     'name': 'Brightwater Recruit',
     'notifications': False,
     'profile_background_color': 'FFFFFF',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/378800000163469733/gwP6pMii.jpeg',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/378800000163469733/gwP6pMii.jpeg',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/284601454/1428420390',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/471259808314580992/HU-oANnr_normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/471259808314580992/HU-oANnr_normal.jpeg',
     'profile_link_color': '0084B4',
     'profile_sidebar_border_color': 'FFFFFF',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'brightwater98',
     'statuses_count': 4598,
     'time_zone': 'Dublin',
     'url': 'http://t.co/reW1opZgpc',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   'text': 'RT @brightwater98: Tom Doyle winner of Brightwater Samsung Tab #PyconIE https://t.co/HiUhKV3wG0',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sat Mar 09 19:07:47 +0000 2013',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Follow Emma Anglim, Manager of BrightStar Recruitment, for business support, public sector, retail & sales news and job updates across Ireland. Tel. 01 6620300',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'brightwatersupport.com',
        'expanded_url': 'http://www.brightwatersupport.com',
        'indices': [0, 22],
        'url': 'http://t.co/dmJ4h9mHqT'}]}},
    'favourites_count': 75,
    'follow_request_sent': False,
    'followers_count': 156,
    'following': False,
    'friends_count': 313,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 1255130658,
    'id_str': '1255130658',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 2,
    'location': 'Dublin, Ireland',
    'name': 'Emma Anglim',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/819419867/11727c42b58e69386a857bf65a4f40e8.jpeg',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/819419867/11727c42b58e69386a857bf65a4f40e8.jpeg',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1255130658/1366718286',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/378800000415259557/ea861e42b7aa4ce98f22f93cf01420ac_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/378800000415259557/ea861e42b7aa4ce98f22f93cf01420ac_normal.jpeg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'FFFFFF',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'emmaanglim',
    'statuses_count': 304,
    'time_zone': 'Dublin',
    'url': 'http://t.co/dmJ4h9mHqT',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 08:48:28 +0000 2015',
   'entities': {'hashtags': [{'indices': [118, 126], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 75483,
      'id_str': '75483',
      'indices': [3, 10],
      'name': 'whykay',
      'screen_name': 'whykay'},
     {'id': 284739139,
      'id_str': '284739139',
      'indices': [12, 21],
      'name': 'PyLadies',
      'screen_name': 'pyladies'},
     {'id': 1596781705,
      'id_str': '1596781705',
      'indices': [23, 35],
      'name': 'PyLadiesDub',
      'screen_name': 'PyLadiesDub'},
     {'id': 2544208537,
      'id_str': '2544208537',
      'indices': [44, 56],
      'name': 'Django Girls',
      'screen_name': 'djangogirls'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658203459892740096,
   'id_str': '658203459892740096',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 5,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sat Oct 24 18:28:03 +0000 2015',
    'entities': {'hashtags': [{'indices': [106, 114], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 284739139,
       'id_str': '284739139',
       'indices': [0, 9],
       'name': 'PyLadies',
       'screen_name': 'pyladies'},
      {'id': 1596781705,
       'id_str': '1596781705',
       'indices': [11, 23],
       'name': 'PyLadiesDub',
       'screen_name': 'PyLadiesDub'},
      {'id': 2544208537,
       'id_str': '2544208537',
       'indices': [32, 44],
       'name': 'Django Girls',
       'screen_name': 'djangogirls'}]},
    'favorite_count': 1,
    'favorited': False,
    'geo': None,
    'id': 657986928164388864,
    'id_str': '657986928164388864',
    'in_reply_to_screen_name': 'pyladies',
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': 284739139,
    'in_reply_to_user_id_str': '284739139',
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 5,
    'retweeted': False,
    'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
    'text': '@PyLadies (@PyLadiesDub ) &amp; @djangogirls lunch meet tomorrow at restaurant. Interested? Come join us. #PyConIE',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sun Dec 17 12:45:54 +0000 2006',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'A Pythonista (I think I can call myself that nowadays). So a coder & a tech event organiser. I ♥ Python (after my hubby, of course).',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'about.me/whykay',
         'expanded_url': 'http://about.me/whykay',
         'indices': [0, 20],
         'url': 'http://t.co/LAKRqfvw'}]}},
     'favourites_count': 1616,
     'follow_request_sent': False,
     'followers_count': 1260,
     'following': False,
     'friends_count': 376,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 75483,
     'id_str': '75483',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 133,
     'location': 'Dublin',
     'name': 'whykay',
     'notifications': False,
     'profile_background_color': '07090B',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/75483/1354053976',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_link_color': 'C34242',
     'profile_sidebar_border_color': 'BFBFBF',
     'profile_sidebar_fill_color': 'C9C9C9',
     'profile_text_color': '1C1F23',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'whykay',
     'statuses_count': 22056,
     'time_zone': 'Dublin',
     'url': 'http://t.co/LAKRqfvw',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   'text': 'RT @whykay: @PyLadies (@PyLadiesDub ) &amp; @djangogirls lunch meet tomorrow at restaurant. Interested? Come join us. #PyConIE',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Mon Aug 11 20:10:20 +0000 2014',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'We  are an Irish computer vision startup! We  turn user-gen brand images into actionable insights',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'beautifeye.co',
        'expanded_url': 'http://www.beautifeye.co',
        'indices': [0, 22],
        'url': 'http://t.co/1fnRyq83Jo'}]}},
    'favourites_count': 11,
    'follow_request_sent': False,
    'followers_count': 154,
    'following': False,
    'friends_count': 169,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 2724610291,
    'id_str': '2724610291',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 10,
    'location': 'Dublin Ireland',
    'name': 'beautifeye',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/542595850556280832/n2I8tOno.jpeg',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/542595850556280832/n2I8tOno.jpeg',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2724610291/1418199942',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/600970002628517889/65Rt2xnj_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/600970002628517889/65Rt2xnj_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'beautifeyelabs',
    'statuses_count': 68,
    'time_zone': 'London',
    'url': 'http://t.co/1fnRyq83Jo',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 08:47:27 +0000 2015',
   'entities': {'hashtags': [{'indices': [118, 126], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 75483,
      'id_str': '75483',
      'indices': [3, 10],
      'name': 'whykay',
      'screen_name': 'whykay'},
     {'id': 284739139,
      'id_str': '284739139',
      'indices': [12, 21],
      'name': 'PyLadies',
      'screen_name': 'pyladies'},
     {'id': 1596781705,
      'id_str': '1596781705',
      'indices': [23, 35],
      'name': 'PyLadiesDub',
      'screen_name': 'PyLadiesDub'},
     {'id': 2544208537,
      'id_str': '2544208537',
      'indices': [44, 56],
      'name': 'Django Girls',
      'screen_name': 'djangogirls'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658203205558509568,
   'id_str': '658203205558509568',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 5,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sat Oct 24 18:28:03 +0000 2015',
    'entities': {'hashtags': [{'indices': [106, 114], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 284739139,
       'id_str': '284739139',
       'indices': [0, 9],
       'name': 'PyLadies',
       'screen_name': 'pyladies'},
      {'id': 1596781705,
       'id_str': '1596781705',
       'indices': [11, 23],
       'name': 'PyLadiesDub',
       'screen_name': 'PyLadiesDub'},
      {'id': 2544208537,
       'id_str': '2544208537',
       'indices': [32, 44],
       'name': 'Django Girls',
       'screen_name': 'djangogirls'}]},
    'favorite_count': 1,
    'favorited': False,
    'geo': None,
    'id': 657986928164388864,
    'id_str': '657986928164388864',
    'in_reply_to_screen_name': 'pyladies',
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': 284739139,
    'in_reply_to_user_id_str': '284739139',
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 5,
    'retweeted': False,
    'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
    'text': '@PyLadies (@PyLadiesDub ) &amp; @djangogirls lunch meet tomorrow at restaurant. Interested? Come join us. #PyConIE',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sun Dec 17 12:45:54 +0000 2006',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'A Pythonista (I think I can call myself that nowadays). So a coder & a tech event organiser. I ♥ Python (after my hubby, of course).',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'about.me/whykay',
         'expanded_url': 'http://about.me/whykay',
         'indices': [0, 20],
         'url': 'http://t.co/LAKRqfvw'}]}},
     'favourites_count': 1616,
     'follow_request_sent': False,
     'followers_count': 1260,
     'following': False,
     'friends_count': 376,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 75483,
     'id_str': '75483',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 133,
     'location': 'Dublin',
     'name': 'whykay',
     'notifications': False,
     'profile_background_color': '07090B',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/75483/1354053976',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_link_color': 'C34242',
     'profile_sidebar_border_color': 'BFBFBF',
     'profile_sidebar_fill_color': 'C9C9C9',
     'profile_text_color': '1C1F23',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'whykay',
     'statuses_count': 22056,
     'time_zone': 'Dublin',
     'url': 'http://t.co/LAKRqfvw',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'RT @whykay: @PyLadies (@PyLadiesDub ) &amp; @djangogirls lunch meet tomorrow at restaurant. Interested? Come join us. #PyConIE',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Wed Sep 19 13:16:06 +0000 2012',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'I talk to machines, mostly in Python and SQL. All sorts of geeky things and general awesomeness. Pronouns: they or she.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'ef.gy',
        'expanded_url': 'http://ef.gy',
        'indices': [0, 22],
        'url': 'http://t.co/9t1mjFpZDt'}]}},
    'favourites_count': 3208,
    'follow_request_sent': False,
    'followers_count': 350,
    'following': False,
    'friends_count': 1139,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 833307308,
    'id_str': '833307308',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en-gb',
    'listed_count': 16,
    'location': '',
    'name': 'level 18 tech wizard',
    'notifications': False,
    'profile_background_color': '1A1B1F',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme9/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme9/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/2633300224/5cdd3c0fd0a45142458a8c3bd485e16c_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/2633300224/5cdd3c0fd0a45142458a8c3bd485e16c_normal.png',
    'profile_link_color': '2FC2EF',
    'profile_sidebar_border_color': '181A1E',
    'profile_sidebar_fill_color': '252429',
    'profile_text_color': '666666',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'machine_person',
    'statuses_count': 1622,
    'time_zone': 'Bern',
    'url': 'http://t.co/9t1mjFpZDt',
    'utc_offset': 3600,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 08:36:58 +0000 2015',
   'entities': {'hashtags': [{'indices': [42, 55], 'text': 'DeepLearning'},
     {'indices': [93, 101], 'text': 'PyConIE'},
     {'indices': [117, 124], 'text': 'python'}],
    'media': [{'display_url': 'pic.twitter.com/LuZaQDvxgK',
      'expanded_url': 'http://twitter.com/shane_a_lynn/status/657908706416467968/photo/1',
      'id': 657908697885245440,
      'id_str': '657908697885245440',
      'indices': [125, 140],
      'media_url': 'http://pbs.twimg.com/media/CSFceZgXAAAV4in.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/CSFceZgXAAAV4in.jpg',
      'sizes': {'large': {'h': 768, 'resize': 'fit', 'w': 1024},
       'medium': {'h': 450, 'resize': 'fit', 'w': 600},
       'small': {'h': 255, 'resize': 'fit', 'w': 340},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 657908706416467968,
      'source_status_id_str': '657908706416467968',
      'source_user_id': 244517265,
      'source_user_id_str': '244517265',
      'type': 'photo',
      'url': 'https://t.co/LuZaQDvxgK'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 244517265,
      'id_str': '244517265',
      'indices': [3, 16],
      'name': 'Shane Lynn',
      'screen_name': 'shane_a_lynn'},
     {'id': 22954575,
      'id_str': '22954575',
      'indices': [65, 73],
      'name': 'Bargava',
      'screen_name': 'bargava'},
     {'id': 43276102,
      'id_str': '43276102',
      'indices': [78, 89],
      'name': 'Raghotham S',
      'screen_name': 'raghothams'},
     {'id': 21097510,
      'id_str': '21097510',
      'indices': [102, 116],
      'name': 'Python Ireland',
      'screen_name': 'PythonIreland'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658200567387398144,
   'id_str': '658200567387398144',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 8,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sat Oct 24 13:17:13 +0000 2015',
    'entities': {'hashtags': [{'indices': [24, 37], 'text': 'DeepLearning'},
      {'indices': [75, 83], 'text': 'PyConIE'},
      {'indices': [99, 106], 'text': 'python'}],
     'media': [{'display_url': 'pic.twitter.com/LuZaQDvxgK',
       'expanded_url': 'http://twitter.com/shane_a_lynn/status/657908706416467968/photo/1',
       'id': 657908697885245440,
       'id_str': '657908697885245440',
       'indices': [107, 130],
       'media_url': 'http://pbs.twimg.com/media/CSFceZgXAAAV4in.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/CSFceZgXAAAV4in.jpg',
       'sizes': {'large': {'h': 768, 'resize': 'fit', 'w': 1024},
        'medium': {'h': 450, 'resize': 'fit', 'w': 600},
        'small': {'h': 255, 'resize': 'fit', 'w': 340},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/LuZaQDvxgK'}],
     'symbols': [],
     'urls': [],
     'user_mentions': [{'id': 22954575,
       'id_str': '22954575',
       'indices': [47, 55],
       'name': 'Bargava',
       'screen_name': 'bargava'},
      {'id': 43276102,
       'id_str': '43276102',
       'indices': [60, 71],
       'name': 'Raghotham S',
       'screen_name': 'raghothams'},
      {'id': 21097510,
       'id_str': '21097510',
       'indices': [84, 98],
       'name': 'Python Ireland',
       'screen_name': 'PythonIreland'}]},
    'favorite_count': 11,
    'favorited': False,
    'geo': None,
    'id': 657908706416467968,
    'id_str': '657908706416467968',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 8,
    'retweeted': False,
    'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
    'text': 'Getting stuck into some #DeepLearning now with @bargava and @raghothams at #PyConIE @PythonIreland #python https://t.co/LuZaQDvxgK',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sat Jan 29 13:57:05 +0000 2011',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Data Science, Analytics, Visualisation and Startups. CEO and Co-Founder @Kill_Biller. Ex-Analytics Manager @DeloitteIreland',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'shanelynn.ie',
         'expanded_url': 'http://www.shanelynn.ie',
         'indices': [0, 22],
         'url': 'http://t.co/HEIdTN9IW9'}]}},
     'favourites_count': 1394,
     'follow_request_sent': False,
     'followers_count': 724,
     'following': False,
     'friends_count': 838,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 244517265,
     'id_str': '244517265',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 75,
     'location': 'Dublin, Ireland',
     'name': 'Shane Lynn',
     'notifications': False,
     'profile_background_color': '022330',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/378800000015947665/d8a6706d256cde942962372c213b6cc6.jpeg',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/378800000015947665/d8a6706d256cde942962372c213b6cc6.jpeg',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/244517265/1372786681',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/413684983929135105/aJtBkzZK_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/413684983929135105/aJtBkzZK_normal.png',
     'profile_link_color': '7C56E3',
     'profile_sidebar_border_color': 'FFFFFF',
     'profile_sidebar_fill_color': 'C0DFEC',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'shane_a_lynn',
     'statuses_count': 1044,
     'time_zone': 'Amsterdam',
     'url': 'http://t.co/HEIdTN9IW9',
     'utc_offset': 3600,
     'verified': False}},
   'source': '<a href="http://idl.baidu.com/" rel="nofollow">Visual Recognition</a>',
   'text': 'RT @shane_a_lynn: Getting stuck into some #DeepLearning now with @bargava and @raghothams at #PyConIE @PythonIreland #python https://t.co/L…',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sat Aug 15 15:16:21 +0000 2015',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'Having been working in Baidu for several years, in the special group of Text Generation and Summarization. (Unfortunately) not that Andrew you saw on TV :P',
    'entities': {'description': {'urls': []}},
    'favourites_count': 5127,
    'follow_request_sent': False,
    'followers_count': 182,
    'following': True,
    'friends_count': 94,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 3316009302,
    'id_str': '3316009302',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 322,
    'location': 'Beijing',
    'name': 'Andrew Baidu',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/3316009302/1439692151',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/632743976785735682/CfTy63Eb_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/632743976785735682/CfTy63Eb_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'AndrewBaidu',
    'statuses_count': 7346,
    'time_zone': None,
    'url': None,
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 08:16:27 +0000 2015',
   'entities': {'hashtags': [{'indices': [30, 38], 'text': 'PyConIE'},
     {'indices': [39, 54], 'text': 'lightningtalks'}],
    'media': [{'display_url': 'pic.twitter.com/CgF6FINw0R',
      'expanded_url': 'http://twitter.com/whykay/status/657977475411124224/photo/1',
      'id': 657977472416288768,
      'id_str': '657977472416288768',
      'indices': [56, 79],
      'media_url': 'http://pbs.twimg.com/media/CSGbBmmVEAAmgCd.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/CSGbBmmVEAAmgCd.jpg',
      'sizes': {'large': {'h': 768, 'resize': 'fit', 'w': 1024},
       'medium': {'h': 450, 'resize': 'fit', 'w': 600},
       'small': {'h': 255, 'resize': 'fit', 'w': 340},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 657977475411124224,
      'source_status_id_str': '657977475411124224',
      'source_user_id': 75483,
      'source_user_id_str': '75483',
      'type': 'photo',
      'url': 'https://t.co/CgF6FINw0R'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 75483,
      'id_str': '75483',
      'indices': [3, 10],
      'name': 'whykay',
      'screen_name': 'whykay'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658195404215963648,
   'id_str': '658195404215963648',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'tl',
   'metadata': {'iso_language_code': 'tl', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sat Oct 24 17:50:29 +0000 2015',
    'entities': {'hashtags': [{'indices': [18, 26], 'text': 'PyConIE'},
      {'indices': [27, 42], 'text': 'lightningtalks'}],
     'media': [{'display_url': 'pic.twitter.com/CgF6FINw0R',
       'expanded_url': 'http://twitter.com/whykay/status/657977475411124224/photo/1',
       'id': 657977472416288768,
       'id_str': '657977472416288768',
       'indices': [44, 67],
       'media_url': 'http://pbs.twimg.com/media/CSGbBmmVEAAmgCd.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/CSGbBmmVEAAmgCd.jpg',
       'sizes': {'large': {'h': 768, 'resize': 'fit', 'w': 1024},
        'medium': {'h': 450, 'resize': 'fit', 'w': 600},
        'small': {'h': 255, 'resize': 'fit', 'w': 340},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/CgF6FINw0R'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 0,
    'favorited': False,
    'geo': None,
    'id': 657977475411124224,
    'id_str': '657977475411124224',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'tl',
    'metadata': {'iso_language_code': 'tl', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
    'text': 'micro:bit demo at #PyConIE #lightningtalks. https://t.co/CgF6FINw0R',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sun Dec 17 12:45:54 +0000 2006',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'A Pythonista (I think I can call myself that nowadays). So a coder & a tech event organiser. I ♥ Python (after my hubby, of course).',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'about.me/whykay',
         'expanded_url': 'http://about.me/whykay',
         'indices': [0, 20],
         'url': 'http://t.co/LAKRqfvw'}]}},
     'favourites_count': 1616,
     'follow_request_sent': False,
     'followers_count': 1260,
     'following': False,
     'friends_count': 376,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 75483,
     'id_str': '75483',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 133,
     'location': 'Dublin',
     'name': 'whykay',
     'notifications': False,
     'profile_background_color': '07090B',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/75483/1354053976',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
     'profile_link_color': 'C34242',
     'profile_sidebar_border_color': 'BFBFBF',
     'profile_sidebar_fill_color': 'C9C9C9',
     'profile_text_color': '1C1F23',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'whykay',
     'statuses_count': 22056,
     'time_zone': 'Dublin',
     'url': 'http://t.co/LAKRqfvw',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'RT @whykay: micro:bit demo at #PyConIE #lightningtalks. https://t.co/CgF6FINw0R',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Wed Sep 19 13:16:06 +0000 2012',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'I talk to machines, mostly in Python and SQL. All sorts of geeky things and general awesomeness. Pronouns: they or she.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'ef.gy',
        'expanded_url': 'http://ef.gy',
        'indices': [0, 22],
        'url': 'http://t.co/9t1mjFpZDt'}]}},
    'favourites_count': 3208,
    'follow_request_sent': False,
    'followers_count': 350,
    'following': False,
    'friends_count': 1139,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 833307308,
    'id_str': '833307308',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en-gb',
    'listed_count': 16,
    'location': '',
    'name': 'level 18 tech wizard',
    'notifications': False,
    'profile_background_color': '1A1B1F',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme9/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme9/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/2633300224/5cdd3c0fd0a45142458a8c3bd485e16c_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/2633300224/5cdd3c0fd0a45142458a8c3bd485e16c_normal.png',
    'profile_link_color': '2FC2EF',
    'profile_sidebar_border_color': '181A1E',
    'profile_sidebar_fill_color': '252429',
    'profile_text_color': '666666',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'machine_person',
    'statuses_count': 1622,
    'time_zone': 'Bern',
    'url': 'http://t.co/9t1mjFpZDt',
    'utc_offset': 3600,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 08:07:28 +0000 2015',
   'entities': {'hashtags': [{'indices': [52, 59], 'text': 'Python'},
     {'indices': [85, 93], 'text': 'PyConIE'},
     {'indices': [94, 107], 'text': 'PyConIreland'},
     {'indices': [108, 113], 'text': 'Py15'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 242892269,
      'id_str': '242892269',
      'indices': [3, 10],
      'name': 'Ajak Saksow',
      'screen_name': 'Saksow'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658193142345310208,
   'id_str': '658193142345310208',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'fr',
   'metadata': {'iso_language_code': 'fr', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sat Oct 24 22:53:03 +0000 2015',
    'entities': {'hashtags': [{'indices': [40, 47], 'text': 'Python'},
      {'indices': [73, 81], 'text': 'PyConIE'},
      {'indices': [82, 95], 'text': 'PyConIreland'},
      {'indices': [96, 101], 'text': 'Py15'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 0,
    'favorited': False,
    'geo': None,
    'id': 658053617518321664,
    'id_str': '658053617518321664',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'fr',
    'metadata': {'iso_language_code': 'fr', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 1,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': "J'aurais jamais pensé qu'une conférence #Python serait aussi amusante :D #PyConIE #PyConIreland #Py15",
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Tue Jan 25 20:56:17 +0000 2011',
     'default_profile': True,
     'default_profile_image': False,
     'description': 'Lazy. Geeky. Trolly.',
     'entities': {'description': {'urls': []}},
     'favourites_count': 43,
     'follow_request_sent': False,
     'followers_count': 1737,
     'following': False,
     'friends_count': 130,
     'geo_enabled': True,
     'has_extended_profile': True,
     'id': 242892269,
     'id_str': '242892269',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 43,
     'location': 'Dublin City, Ireland',
     'name': 'Ajak Saksow',
     'notifications': False,
     'profile_background_color': 'C0DEED',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/242892269/1403258832',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/565893046081187840/Vse6WBj5_normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/565893046081187840/Vse6WBj5_normal.jpeg',
     'profile_link_color': '0084B4',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'Saksow',
     'statuses_count': 34259,
     'time_zone': 'Dublin',
     'url': None,
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': "RT @Saksow: J'aurais jamais pensé qu'une conférence #Python serait aussi amusante :D #PyConIE #PyConIreland #Py15",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Feb 28 09:17:05 +0000 2012',
    'default_profile': True,
    'default_profile_image': False,
    'description': "CONSIDEREZ TOUS NOS TWEETS COMME #NSFW. (en + si vous cliquez sur des liens ludiques au travail, c'est que vous bossez pas, bande de feignasses).",
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'sametmax.com',
        'expanded_url': 'http://sametmax.com/',
        'indices': [0, 22],
        'url': 'http://t.co/VmCF9SZv9E'}]}},
    'favourites_count': 0,
    'follow_request_sent': False,
    'followers_count': 2005,
    'following': False,
    'friends_count': 1,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 507128812,
    'id_str': '507128812',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'fr',
    'listed_count': 181,
    'location': '',
    'name': 'SamEtMax',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1859873928/img_Dog-and-rabbit_Thomas-SCHWEIZER_ref_150.001844.00_mode_zoom_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1859873928/img_Dog-and-rabbit_Thomas-SCHWEIZER_ref_150.001844.00_mode_zoom_normal.jpg',
    'profile_link_color': '0084B4',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'sam_et_max',
    'statuses_count': 13838,
    'time_zone': 'Amsterdam',
    'url': 'http://t.co/VmCF9SZv9E',
    'utc_offset': 3600,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 07:59:00 +0000 2015',
   'entities': {'hashtags': [{'indices': [92, 100], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 1,
   'favorited': False,
   'geo': None,
   'id': 658191010317639680,
   'id_str': '658191010317639680',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'source': '<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iΟS</a>',
   'text': 'Wish cats understood hour changes earlier this morning! Anyhoo, looking forward to day 2 of #PyConIE!!! *yay* 😺😺😺',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sun Dec 17 12:45:54 +0000 2006',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'A Pythonista (I think I can call myself that nowadays). So a coder & a tech event organiser. I ♥ Python (after my hubby, of course).',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'about.me/whykay',
        'expanded_url': 'http://about.me/whykay',
        'indices': [0, 20],
        'url': 'http://t.co/LAKRqfvw'}]}},
    'favourites_count': 1616,
    'follow_request_sent': False,
    'followers_count': 1260,
    'following': False,
    'friends_count': 376,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 75483,
    'id_str': '75483',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 133,
    'location': 'Dublin',
    'name': 'whykay',
    'notifications': False,
    'profile_background_color': '07090B',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/403387441/x962daa68122025b1c88a37b2a496853.png',
    'profile_background_tile': True,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/75483/1354053976',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/578184257392136192/-Tq4vTjE_normal.png',
    'profile_link_color': 'C34242',
    'profile_sidebar_border_color': 'BFBFBF',
    'profile_sidebar_fill_color': 'C9C9C9',
    'profile_text_color': '1C1F23',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'whykay',
    'statuses_count': 22056,
    'time_zone': 'Dublin',
    'url': 'http://t.co/LAKRqfvw',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 07:56:05 +0000 2015',
   'entities': {'hashtags': [{'indices': [63, 71], 'text': 'PyconIE'}],
    'media': [{'display_url': 'pic.twitter.com/HiUhKV3wG0',
      'expanded_url': 'http://twitter.com/brightwater98/status/657961766358503424/photo/1',
      'id': 657961748973027332,
      'id_str': '657961748973027332',
      'indices': [72, 95],
      'media_url': 'http://pbs.twimg.com/media/CSGMuYNVAAQoB9-.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/CSGMuYNVAAQoB9-.jpg',
      'sizes': {'large': {'h': 579, 'resize': 'fit', 'w': 1024},
       'medium': {'h': 339, 'resize': 'fit', 'w': 600},
       'small': {'h': 192, 'resize': 'fit', 'w': 340},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 657961766358503424,
      'source_status_id_str': '657961766358503424',
      'source_user_id': 284601454,
      'source_user_id_str': '284601454',
      'type': 'photo',
      'url': 'https://t.co/HiUhKV3wG0'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 284601454,
      'id_str': '284601454',
      'indices': [3, 17],
      'name': 'Brightwater Recruit',
      'screen_name': 'brightwater98'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658190276805177344,
   'id_str': '658190276805177344',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 6,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sat Oct 24 16:48:04 +0000 2015',
    'entities': {'hashtags': [{'indices': [44, 52], 'text': 'PyconIE'}],
     'media': [{'display_url': 'pic.twitter.com/HiUhKV3wG0',
       'expanded_url': 'http://twitter.com/brightwater98/status/657961766358503424/photo/1',
       'id': 657961748973027332,
       'id_str': '657961748973027332',
       'indices': [53, 76],
       'media_url': 'http://pbs.twimg.com/media/CSGMuYNVAAQoB9-.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/CSGMuYNVAAQoB9-.jpg',
       'sizes': {'large': {'h': 579, 'resize': 'fit', 'w': 1024},
        'medium': {'h': 339, 'resize': 'fit', 'w': 600},
        'small': {'h': 192, 'resize': 'fit', 'w': 340},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/HiUhKV3wG0'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 7,
    'favorited': False,
    'geo': None,
    'id': 657961766358503424,
    'id_str': '657961766358503424',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 6,
    'retweeted': False,
    'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    'text': 'Tom Doyle winner of Brightwater Samsung Tab #PyconIE https://t.co/HiUhKV3wG0',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Tue Apr 19 15:58:00 +0000 2011',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Current industry trends & market information, expert career advice and job updates across Dublin & Ireland.  Tel. 01 662 1000\nWant to join us?',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'brightwater.ie/join-brightwat…',
         'expanded_url': 'http://www.brightwater.ie/join-brightwater/become-a-recruiter',
         'indices': [0, 22],
         'url': 'http://t.co/reW1opZgpc'}]}},
     'favourites_count': 242,
     'follow_request_sent': False,
     'followers_count': 7831,
     'following': False,
     'friends_count': 984,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 284601454,
     'id_str': '284601454',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 61,
     'location': 'Dublin, Ireland',
     'name': 'Brightwater Recruit',
     'notifications': False,
     'profile_background_color': 'FFFFFF',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/378800000163469733/gwP6pMii.jpeg',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/378800000163469733/gwP6pMii.jpeg',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/284601454/1428420390',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/471259808314580992/HU-oANnr_normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/471259808314580992/HU-oANnr_normal.jpeg',
     'profile_link_color': '0084B4',
     'profile_sidebar_border_color': 'FFFFFF',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'brightwater98',
     'statuses_count': 4598,
     'time_zone': 'Dublin',
     'url': 'http://t.co/reW1opZgpc',
     'utc_offset': 0,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @brightwater98: Tom Doyle winner of Brightwater Samsung Tab #PyconIE https://t.co/HiUhKV3wG0',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Thu Sep 11 14:20:15 +0000 2008',
    'default_profile': False,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 5,
    'follow_request_sent': False,
    'followers_count': 142,
    'following': False,
    'friends_count': 248,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 16240771,
    'id_str': '16240771',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 5,
    'location': 'Dublin, Eire',
    'name': 'diarmuidbourke',
    'notifications': False,
    'profile_background_color': 'C6E2EE',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme2/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme2/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/60050763/picture_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/60050763/picture_normal.jpeg',
    'profile_link_color': '1F98C7',
    'profile_sidebar_border_color': 'C6E2EE',
    'profile_sidebar_fill_color': 'DAECF4',
    'profile_text_color': '663B12',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'diarmuidbourke',
    'statuses_count': 109,
    'time_zone': 'Dublin',
    'url': None,
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 07:30:05 +0000 2015',
   'entities': {'hashtags': [{'indices': [36, 44], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 21097510,
      'id_str': '21097510',
      'indices': [45, 59],
      'name': 'Python Ireland',
      'screen_name': 'PythonIreland'}]},
   'favorite_count': 4,
   'favorited': False,
   'geo': None,
   'id': 658183734064226305,
   'id_str': '658183734064226305',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'Looking forward to 9am breakfast at #PyConIE @PythonIreland',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Thu Sep 11 14:20:15 +0000 2008',
    'default_profile': False,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 5,
    'follow_request_sent': False,
    'followers_count': 142,
    'following': False,
    'friends_count': 248,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 16240771,
    'id_str': '16240771',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 5,
    'location': 'Dublin, Eire',
    'name': 'diarmuidbourke',
    'notifications': False,
    'profile_background_color': 'C6E2EE',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme2/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme2/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/60050763/picture_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/60050763/picture_normal.jpeg',
    'profile_link_color': '1F98C7',
    'profile_sidebar_border_color': 'C6E2EE',
    'profile_sidebar_fill_color': 'DAECF4',
    'profile_text_color': '663B12',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'diarmuidbourke',
    'statuses_count': 109,
    'time_zone': 'Dublin',
    'url': None,
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 07:29:26 +0000 2015',
   'entities': {'hashtags': [{'indices': [30, 38], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 2633711,
      'id_str': '2633711',
      'indices': [3, 13],
      'name': 'Steve Holden',
      'screen_name': 'holdenweb'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658183569479761920,
   'id_str': '658183569479761920',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sat Oct 24 23:38:32 +0000 2015',
    'entities': {'hashtags': [{'indices': [15, 23], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 7,
    'favorited': False,
    'geo': None,
    'id': 658065063551614976,
    'id_str': '658065063551614976',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="http://www.hootsuite.com" rel="nofollow">Hootsuite</a>',
    'text': 'Had a blast at #PyConIE - hard to believe that after only 13 years there are now more than 40 PyCons all over the world',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Wed Mar 28 07:53:11 +0000 2007',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Web technologist, instructor, mentor, consultant, and pragmatic user of the Oxford comma. Escaped Python Software Foundation chairman. Thinker',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'holdenweb.blogspot.com',
         'expanded_url': 'http://holdenweb.blogspot.com/',
         'indices': [0, 22],
         'url': 'http://t.co/CNvxx6kdmv'}]}},
     'favourites_count': 129,
     'follow_request_sent': False,
     'followers_count': 4291,
     'following': False,
     'friends_count': 328,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 2633711,
     'id_str': '2633711',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 361,
     'location': 'Portland, OR',
     'name': 'Steve Holden',
     'notifications': False,
     'profile_background_color': '9AE4E8',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/4668108/GGSeamless.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/4668108/GGSeamless.png',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2633711/1356626363',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/582695392384397313/VWvz0uK4_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/582695392384397313/VWvz0uK4_normal.jpg',
     'profile_link_color': '0000FF',
     'profile_sidebar_border_color': '87BC44',
     'profile_sidebar_fill_color': 'E0FF92',
     'profile_text_color': '000000',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'holdenweb',
     'statuses_count': 22102,
     'time_zone': 'Pacific Time (US & Canada)',
     'url': 'http://t.co/CNvxx6kdmv',
     'utc_offset': -25200,
     'verified': False}},
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'RT @holdenweb: Had a blast at #PyConIE - hard to believe that after only 13 years there are now more than 40 PyCons all over the world',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Thu Apr 23 19:44:08 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': '3rd Level Educator, Technical Author, Software Developer - Author of (among other things) Head First Python',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'paulbarry.itcarlow.ie',
        'expanded_url': 'http://paulbarry.itcarlow.ie',
        'indices': [0, 22],
        'url': 'http://t.co/XzYr0keezP'}]}},
    'favourites_count': 4,
    'follow_request_sent': False,
    'followers_count': 256,
    'following': False,
    'friends_count': 20,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 34707622,
    'id_str': '34707622',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 28,
    'location': 'Carlow, Ireland',
    'name': 'Paul Barry',
    'notifications': False,
    'profile_background_color': 'C6E2EE',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme2/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme2/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/3301910572/6cf1995cf830d535d7f6b31d4f6fa2d7_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/3301910572/6cf1995cf830d535d7f6b31d4f6fa2d7_normal.jpeg',
    'profile_link_color': '1F98C7',
    'profile_sidebar_border_color': 'C6E2EE',
    'profile_sidebar_fill_color': 'DAECF4',
    'profile_text_color': '663B12',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'barrypj',
    'statuses_count': 2151,
    'time_zone': 'Dublin',
    'url': 'http://t.co/XzYr0keezP',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 07:06:56 +0000 2015',
   'entities': {'hashtags': [{'indices': [23, 31], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': []},
   'favorite_count': 2,
   'favorited': False,
   'geo': None,
   'id': 658177907257421824,
   'id_str': '658177907257421824',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': "It is already Day 2 of #PyConIE. Can't believe how time flies by when you are having a great time. Hope to meet more wonderful people today!",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Mon Sep 28 02:30:16 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Passionate about all things technology. Following #DataScience #Python #GO #MachineLearning #QuantifiedSelf #AngularJS #Meetup & #PredictiveModelling',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'ie.linkedin.com/in/allentv',
        'expanded_url': 'http://ie.linkedin.com/in/allentv',
        'indices': [0, 22],
        'url': 'http://t.co/OSTK2U1Lba'}]}},
    'favourites_count': 693,
    'follow_request_sent': False,
    'followers_count': 750,
    'following': False,
    'friends_count': 1968,
    'geo_enabled': True,
    'has_extended_profile': True,
    'id': 77901568,
    'id_str': '77901568',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 63,
    'location': 'Dublin,Ireland',
    'name': 'Allen ThomasVarghese',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme17/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme17/bg.gif',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/77901568/1428159744',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/647920866676838402/IbI1zvrd_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/647920866676838402/IbI1zvrd_normal.jpg',
    'profile_link_color': '3B94D9',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'allentv4u',
    'statuses_count': 929,
    'time_zone': 'Dublin',
    'url': 'http://t.co/OSTK2U1Lba',
    'utc_offset': 0,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Sun Oct 25 00:09:39 +0000 2015',
   'entities': {'hashtags': [{'indices': [30, 38], 'text': 'PyConIE'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 2633711,
      'id_str': '2633711',
      'indices': [3, 13],
      'name': 'Steve Holden',
      'screen_name': 'holdenweb'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 658072897286598657,
   'id_str': '658072897286598657',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Sat Oct 24 23:38:32 +0000 2015',
    'entities': {'hashtags': [{'indices': [15, 23], 'text': 'PyConIE'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 7,
    'favorited': False,
    'geo': None,
    'id': 658065063551614976,
    'id_str': '658065063551614976',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="http://www.hootsuite.com" rel="nofollow">Hootsuite</a>',
    'text': 'Had a blast at #PyConIE - hard to believe that after only 13 years there are now more than 40 PyCons all over the world',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Wed Mar 28 07:53:11 +0000 2007',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Web technologist, instructor, mentor, consultant, and pragmatic user of the Oxford comma. Escaped Python Software Foundation chairman. Thinker',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'holdenweb.blogspot.com',
         'expanded_url': 'http://holdenweb.blogspot.com/',
         'indices': [0, 22],
         'url': 'http://t.co/CNvxx6kdmv'}]}},
     'favourites_count': 129,
     'follow_request_sent': False,
     'followers_count': 4291,
     'following': False,
     'friends_count': 328,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 2633711,
     'id_str': '2633711',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 361,
     'location': 'Portland, OR',
     'name': 'Steve Holden',
     'notifications': False,
     'profile_background_color': '9AE4E8',
     'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/4668108/GGSeamless.png',
     'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/4668108/GGSeamless.png',
     'profile_background_tile': True,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2633711/1356626363',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/582695392384397313/VWvz0uK4_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/582695392384397313/VWvz0uK4_normal.jpg',
     'profile_link_color': '0000FF',
     'profile_sidebar_border_color': '87BC44',
     'profile_sidebar_fill_color': 'E0FF92',
     'profile_text_color': '000000',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'holdenweb',
     'statuses_count': 22102,
     'time_zone': 'Pacific Time (US & Canada)',
     'url': 'http://t.co/CNvxx6kdmv',
     'utc_offset': -25200,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   'text': 'RT @holdenweb: Had a blast at #PyConIE - hard to believe that after only 13 years there are now more than 40 PyCons all over the world',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Fri Apr 11 00:37:02 +0000 2008',
    'default_profile': False,
    'default_profile_image': False,
    'description': "Python developer extraordinaire and OpenStack hacker at IBM. I speak my mind, and I don't speak for anyone else.",
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'blog.leafe.com',
        'expanded_url': 'http://blog.leafe.com',
        'indices': [0, 22],
        'url': 'http://t.co/fsOxfSxEk3'}]}},
    'favourites_count': 439,
    'follow_request_sent': False,
    'followers_count': 1287,
    'following': False,
    'friends_count': 1086,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 14356844,
    'id_str': '14356844',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 125,
    'location': 'San Antonio, TX',
    'name': 'Ed Leafe',
    'notifications': False,
    'profile_background_color': 'FEF0BF',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1614063335/Portrait__2011-10-30--3-med_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1614063335/Portrait__2011-10-30--3-med_normal.jpg',
    'profile_link_color': '4A913C',
    'profile_sidebar_border_color': '8A5415',
    'profile_sidebar_fill_color': 'FFD86F',
    'profile_text_color': 'AD9090',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'EdLeafe',
    'statuses_count': 19425,
    'time_zone': 'Central Time (US & Canada)',
    'url': 'http://t.co/fsOxfSxEk3',
    'utc_offset': -18000,
    'verified': False}}]}

In [63]:
for bots in range(0, botsatl):
    print(len(wcmbotsea['statuses'][bots]['entities']['hashtags']))


1
1
2
1
1
1
1
1
1
1
1
1
2
1
1
2
1
1
1
1
1
1
1
2
2
1
2
3
2
1
2
1
2
5
2
2
2
1
1
1
1
3
2
4
1
1
1
1
1
1

In [60]:
print(wcmbotsea['statuses'][0]['entities']['hashtags'][0]['text'])


PyConIE

In [ ]: