In [68]:
# standard library:
import os
from pprint import pprint
# other modules:
import matplotlib.pyplot as plt
import pandas as pd
import twitter
import yaml
from pymongo import MongoClient
In [69]:
credentials = yaml.load(open(os.path.expanduser('~/api_cred.yml')))
auth = twitter.oauth.OAuth(credentials['ACCESS_TOKEN'],
credentials['ACCESS_TOKEN_SECRET'],
credentials['API_KEY'],
credentials['API_SECRET'])
twitter_api = twitter.Twitter(auth=auth)
In [70]:
# The Yahoo! Where On Earth ID for the entire world is 1.
# See https://dev.twitter.com/docs/api/1.1/get/trends/place and
# http://developer.yahoo.com/geo/geoplanet/
WORLD_WOE_ID = 1
US_WOE_ID = 23424977
# Prefix ID with the underscore for query string parameterization.
# Without the underscore, the twitter package appends the ID value
# to the URL itself as a special case keyword argument.
world_trends = twitter_api.trends.place(_id=WORLD_WOE_ID)
us_trends = twitter_api.trends.place(_id=US_WOE_ID)
pprint(world_trends)
[{u'as_of': u'2014-04-29T03:44:30Z',
u'created_at': u'2014-04-29T03:38:25Z',
u'locations': [{u'name': u'Worldwide', u'woeid': 1}],
u'trends': [{u'name': u'#RuinAMovieQuote',
u'promoted_content': None,
u'query': u'%23RuinAMovieQuote',
u'url': u'http://twitter.com/search?q=%23RuinAMovieQuote'},
{u'name': u'#VolvioMarcelo',
u'promoted_content': None,
u'query': u'%23VolvioMarcelo',
u'url': u'http://twitter.com/search?q=%23VolvioMarcelo'},
{u'name': u'#BuyOrdinaryOniTunes',
u'promoted_content': None,
u'query': u'%23BuyOrdinaryOniTunes',
u'url': u'http://twitter.com/search?q=%23BuyOrdinaryOniTunes'},
{u'name': u'#FansDeAvBrasil',
u'promoted_content': None,
u'query': u'%23FansDeAvBrasil',
u'url': u'http://twitter.com/search?q=%23FansDeAvBrasil'},
{u'name': u'#SosReChapableSi',
u'promoted_content': None,
u'query': u'%23SosReChapableSi',
u'url': u'http://twitter.com/search?q=%23SosReChapableSi'},
{u'name': u'Kenzo Sayang Shani Indira',
u'promoted_content': None,
u'query': u'%22Kenzo+Sayang+Shani+Indira%22',
u'url': u'http://twitter.com/search?q=%22Kenzo+Sayang+Shani+Indira%22'},
{u'name': u'Timone Pumba and Scar',
u'promoted_content': None,
u'query': u'%22Timone+Pumba+and+Scar%22',
u'url': u'http://twitter.com/search?q=%22Timone+Pumba+and+Scar%22'},
{u'name': u'Zayn Is An Angel',
u'promoted_content': None,
u'query': u'%22Zayn+Is+An+Angel%22',
u'url': u'http://twitter.com/search?q=%22Zayn+Is+An+Angel%22'},
{u'name': u'Bye Obama',
u'promoted_content': None,
u'query': u'%22Bye+Obama%22',
u'url': u'http://twitter.com/search?q=%22Bye+Obama%22'},
{u'name': u'Taylor Mays',
u'promoted_content': None,
u'query': u'%22Taylor+Mays%22',
u'url': u'http://twitter.com/search?q=%22Taylor+Mays%22'}]}]
In [71]:
pprint(us_trends)
[{u'as_of': u'2014-04-29T03:44:31Z',
u'created_at': u'2014-04-29T03:42:45Z',
u'locations': [{u'name': u'United States', u'woeid': 23424977}],
u'trends': [{u'name': u'#RuinAMovieQuote',
u'promoted_content': None,
u'query': u'%23RuinAMovieQuote',
u'url': u'http://twitter.com/search?q=%23RuinAMovieQuote'},
{u'name': u'#BuyOrdinaryOniTunes',
u'promoted_content': None,
u'query': u'%23BuyOrdinaryOniTunes',
u'url': u'http://twitter.com/search?q=%23BuyOrdinaryOniTunes'},
{u'name': u'#DWTSShirtOff',
u'promoted_content': None,
u'query': u'%23DWTSShirtOff',
u'url': u'http://twitter.com/search?q=%23DWTSShirtOff'},
{u'name': u'#LifeofTy',
u'promoted_content': None,
u'query': u'%23LifeofTy',
u'url': u'http://twitter.com/search?q=%23LifeofTy'},
{u'name': u'#bbwlareunion',
u'promoted_content': None,
u'query': u'%23bbwlareunion',
u'url': u'http://twitter.com/search?q=%23bbwlareunion'},
{u'name': u'Timone Pumba and Scar',
u'promoted_content': None,
u'query': u'%22Timone+Pumba+and+Scar%22',
u'url': u'http://twitter.com/search?q=%22Timone+Pumba+and+Scar%22'},
{u'name': u'LeBron vs the Bobcats',
u'promoted_content': None,
u'query': u'%22LeBron+vs+the+Bobcats%22',
u'url': u'http://twitter.com/search?q=%22LeBron+vs+the+Bobcats%22'},
{u'name': u'5TH CHEER ATHLETICS CHEETAHS',
u'promoted_content': None,
u'query': u'%225TH+CHEER+ATHLETICS+CHEETAHS%22',
u'url': u'http://twitter.com/search?q=%225TH+CHEER+ATHLETICS+CHEETAHS%22'},
{u'name': u'Patrick Roy',
u'promoted_content': None,
u'query': u'%22Patrick+Roy%22',
u'url': u'http://twitter.com/search?q=%22Patrick+Roy%22'},
{u'name': u'Dejuan Blair',
u'promoted_content': None,
u'query': u'%22Dejuan+Blair%22',
u'url': u'http://twitter.com/search?q=%22Dejuan+Blair%22'}]}]
In [72]:
world_trends_set = set([trend['name'] for trends in world_trends
for trend in trends['trends']])
us_trends_set = set([trend['name'] for trends in us_trends
for trend in trends['trends']])
world_trends_set.intersection(us_trends_set)
Out[72]:
{u'#BuyOrdinaryOniTunes', u'#RuinAMovieQuote', u'Timone Pumba and Scar'}
In [74]:
q = world_trends[0]['trends'][0]['name']
count = 100
# See https://dev.twitter.com/docs/api/1.1/get/search/tweets
search_results = twitter_api.search.tweets(q=q, count=count)
statuses = search_results['statuses']
In [75]:
len(statuses)
Out[75]:
98
In [76]:
pprint(statuses)
[{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:09 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [62, 78],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [79, 88],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987878726983680,
u'id_str': u'460987878726983680',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"Surely you can't be serious.\nStop fucking calling me Shirley! #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Sep 17 03:31:13 +0000 2008',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Billionaire cryptozoologist playboy and unpleasant mental.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 70,
u'follow_request_sent': False,
u'followers_count': 340,
u'following': False,
u'friends_count': 1972,
u'geo_enabled': True,
u'id': 16323151,
u'id_str': u'16323151',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 3,
u'location': u'',
u'name': u'Philip Johnson',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/342870032/222355_10100277632578943_6241354_52642603_3280453_n.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/342870032/222355_10100277632578943_6241354_52642603_3280453_n.jpg',
u'profile_background_tile': True,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/1577802798/Photo_3_normal.jpg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/1577802798/Photo_3_normal.jpg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Jiddy7',
u'statuses_count': 8725,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:09 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [63, 79],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [80, 89],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987878726586368,
u'id_str': u'460987878726586368',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"These aren't the Droids you're looking for...try the Galaxy S4 #ruinamoviequote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Dec 05 06:24:58 +0000 2013',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'just your average, run of the mill crazy person',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 27,
u'follow_request_sent': False,
u'followers_count': 16,
u'following': False,
u'friends_count': 40,
u'geo_enabled': False,
u'id': 2231020207,
u'id_str': u'2231020207',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 1,
u'location': u'in my own little world',
u'name': u'Aron Pollack',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000831518215/7005a14fe5fd1435ebd4812e11eeaf79_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000831518215/7005a14fe5fd1435ebd4812e11eeaf79_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'aronpollack',
u'statuses_count': 196,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:09 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [59, 75],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [77, 86],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987878349094912,
u'id_str': u'460987878349094912',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'I Feel The Need. The Need For Speed II: Cruise Control! #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Feb 05 04:34:05 +0000 2014',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'I was using Hashtags back when they were called pound signs!',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'youtube.com/channel/UCu5n1\u2026',
u'expanded_url': u'https://www.youtube.com/channel/UCu5n1rVPdG9XNDBO4jNdTww',
u'indices': [0, 23],
u'url': u'https://t.co/cKCXj5HRiV'}]}},
u'favourites_count': 242,
u'follow_request_sent': False,
u'followers_count': 127,
u'following': False,
u'friends_count': 455,
u'geo_enabled': False,
u'id': 2328199160,
u'id_str': u'2328199160',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 4,
u'location': u'Oakbrook Terrace, Il',
u'name': u'McMannofthepeople',
u'notifications': False,
u'profile_background_color': u'020008',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/454307721722855424/7XbE3GSX.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/454307721722855424/7XbE3GSX.jpeg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2328199160/1398697979',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/454312487299469312/V-zaQwr1_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/454312487299469312/V-zaQwr1_normal.jpeg',
u'profile_link_color': u'069906',
u'profile_sidebar_border_color': u'000000',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'McMannofthepeop',
u'statuses_count': 2117,
u'time_zone': u'Central Time (US & Canada)',
u'url': u'https://t.co/cKCXj5HRiV',
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:09 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [58, 74],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [75, 84],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987878269415425,
u'id_str': u'460987878269415425',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"Steve Walsh, I've a feeling you're not in Kansas anymore. #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed May 13 17:22:32 +0000 2009',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'Writer (@impersonals, @ThoughtCatalog, Citizen Kane), Podcast Host (@Wrestlefolks). Editor (@JoeGagneFTA). CONTACT: NotThatTomGreen@gmail.com',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'wrestlefolks.wordpress.com',
u'expanded_url': u'http://wrestlefolks.wordpress.com',
u'indices': [0, 22],
u'url': u'http://t.co/dps1uvqGvb'}]}},
u'favourites_count': 129376,
u'follow_request_sent': False,
u'followers_count': 3331,
u'following': False,
u'friends_count': 451,
u'geo_enabled': True,
u'id': 39796600,
u'id_str': u'39796600',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 45,
u'location': u'Indiana...? Yeah, Indiana.',
u'name': u'Thomas Green',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/39796600/1396767385',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000476026140/e7b509dbda8b0a4c8c43abb03f8bfa04_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000476026140/e7b509dbda8b0a4c8c43abb03f8bfa04_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'NotThatTomGreen',
u'statuses_count': 28257,
u'time_zone': u'Quito',
u'url': u'http://t.co/dps1uvqGvb',
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:09 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [63, 79],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [80, 89],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987877657038848,
u'id_str': u'460987877657038848',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'There can only be one! Or two...honestly the more the merrier. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Sep 12 01:36:00 +0000 2013',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'Tweet extraordinaire.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 63,
u'follow_request_sent': False,
u'followers_count': 14,
u'following': False,
u'friends_count': 228,
u'geo_enabled': False,
u'id': 1855913448,
u'id_str': u'1855913448',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 1,
u'location': u'',
u'name': u'Chelsea Gish',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000446022368/16ff56cc9292855061a182b7ae747efb_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000446022368/16ff56cc9292855061a182b7ae747efb_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'makrin_orange',
u'statuses_count': 54,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:09 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [49, 65],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [39, 48],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987877350842368,
u'id_str': u'460987877350842368',
u'in_reply_to_screen_name': u'midnight',
u'in_reply_to_status_id': 460984606343168000,
u'in_reply_to_status_id_str': u'460984606343168000',
u'in_reply_to_user_id': 1418745782,
u'in_reply_to_user_id_str': u'1418745782',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'Do you feel lucky, well do you brother?@midnight #RuinAMovieQuote',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sun Aug 08 07:50:25 +0000 2010',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 6,
u'follow_request_sent': False,
u'followers_count': 17,
u'following': False,
u'friends_count': 40,
u'geo_enabled': False,
u'id': 176006019,
u'id_str': u'176006019',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'Noi',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/3240133546/3ecfee9bf5e6d43961949675dfa4e0c0_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3240133546/3ecfee9bf5e6d43961949675dfa4e0c0_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'AvoidTheNoi',
u'statuses_count': 50,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': None,
u'utc_offset': -25200,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:08 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [66, 82],
u'text': u'RuinAMovieQuote'},
{u'indices': [83, 92], u'text': u'LifeofTy'},
{u'indices': [93, 114],
u'text': u'ObamacarePickupLines'}],
u'symbols': [],
u'urls': [{u'display_url': u'goo.gl/00cV4K?Young_D\u2026',
u'expanded_url': u'http://goo.gl/00cV4K?Young_Dizzyy',
u'indices': [21, 43],
u'url': u'http://t.co/ss0Npb6TT5'}],
u'user_mentions': []},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987875475984384,
u'id_str': u'460987875475984384',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'possibly_sensitive': False,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
u'text': u'I RECOMMEND TO GAIN \u25bahttp://t.co/ss0Npb6TT5\nTimone Pumba and Scar\n#RuinAMovieQuote\n#LifeofTy\n#ObamacarePickupLines',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Jul 19 23:27:50 +0000 2013',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'\u2764\u2728@BonkBe_Thuggin My QUEEN 7.19.13\u2728\u2764',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 119,
u'follow_request_sent': False,
u'followers_count': 306,
u'following': False,
u'friends_count': 1245,
u'geo_enabled': False,
u'id': 1606956246,
u'id_str': u'1606956246',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u"Shaquila's Man",
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000042443609/b46c96606699423b0ef339d8221ac643.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000042443609/b46c96606699423b0ef339d8221ac643.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1606956246/1389581740',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/429414514313142272/3xG7GADr_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/429414514313142272/3xG7GADr_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Young_Dizzyy',
u'statuses_count': 229,
u'time_zone': u'Atlantic Time (Canada)',
u'url': None,
u'utc_offset': -10800,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:08 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [36, 52],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [53, 62],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987874725597186,
u'id_str': u'460987874725597186',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'Yippee cayenne-pepper motherfucker! #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Mar 09 04:17:59 +0000 2013',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Tweets MUSIC, TV, SPORTS, WOMEN, & FUNNY SH!T \u2605DrUnK tWeEtS AbOuNd\u2605 Old soul~Insomniac~Reclusive comedian.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 4846,
u'follow_request_sent': False,
u'followers_count': 553,
u'following': False,
u'friends_count': 1630,
u'geo_enabled': False,
u'id': 1253380268,
u'id_str': u'1253380268',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 6,
u'location': u'Running it in Middleburg, Fl.',
u'name': u"Dri\u13e9izm\u13a7'87 \u8c50",
u'notifications': False,
u'profile_background_color': u'2F7699',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/881335987/966ddbbe36e603d94d8a48ecf824c0e1.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/881335987/966ddbbe36e603d94d8a48ecf824c0e1.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1253380268/1368146040',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/458195619786801152/53e_MAPc_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/458195619786801152/53e_MAPc_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Driggizmo1987',
u'statuses_count': 3223,
u'time_zone': u'Atlantic Time (Canada)',
u'url': None,
u'utc_offset': -10800,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:08 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [37, 53],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [54, 63],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987873966043136,
u'id_str': u'460987873966043136',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
u'text': u'"Are you a Mexi-can or a Mexi-melt?" #ruinamoviequote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue May 19 17:45:30 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"I tweet because I'm BORED.",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 6483,
u'follow_request_sent': False,
u'followers_count': 393,
u'following': False,
u'friends_count': 478,
u'geo_enabled': True,
u'id': 41166038,
u'id_str': u'41166038',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 7,
u'location': u'NW Indiana',
u'name': u'Holly Brooke',
u'notifications': False,
u'profile_background_color': u'FACAA2',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/454622253213171713/NCVeOaoL.png',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/454622253213171713/NCVeOaoL.png',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/41166038/1397224841',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/454619907477364736/NC0R_RIY_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/454619907477364736/NC0R_RIY_normal.jpeg',
u'profile_link_color': u'F79443',
u'profile_sidebar_border_color': u'9E003F',
u'profile_sidebar_fill_color': u'FF0066',
u'profile_text_color': u'FF6200',
u'profile_use_background_image': False,
u'protected': False,
u'screen_name': u'HellYeahHolly',
u'statuses_count': 12711,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:08 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [15, 31],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [32, 41],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987873479892992,
u'id_str': u'460987873479892992',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"Here's Donald! #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Nov 01 14:28:22 +0000 2012',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'imdb.com/name/nm4067680/',
u'expanded_url': u'http://www.imdb.com/name/nm4067680/',
u'indices': [0, 22],
u'url': u'http://t.co/HJIbVKKIEz'}]}},
u'favourites_count': 294,
u'follow_request_sent': False,
u'followers_count': 73,
u'following': False,
u'friends_count': 321,
u'geo_enabled': False,
u'id': 919134961,
u'id_str': u'919134961',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 4,
u'location': u'',
u'name': u' \u0259',
u'notifications': False,
u'profile_background_color': u'709397',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000160991899/aMj2RVB9.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000160991899/aMj2RVB9.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/919134961/1397001284',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/442659935516495872/4czmerGA_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/442659935516495872/4czmerGA_normal.jpeg',
u'profile_link_color': u'1D4F27',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'theyreonlywords',
u'statuses_count': 1921,
u'time_zone': u'Beijing',
u'url': u'http://t.co/HJIbVKKIEz',
u'utc_offset': 28800,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:08 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [45, 61],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [62, 71],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987873450536960,
u'id_str': u'460987873450536960',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://www.myplume.com/" rel="nofollow">Plume\xa0for\xa0Android</a>',
u'text': u'I got her aids, how do you like them apples? #RuinAMovieQuote\xa0@midnight\xa0',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Mar 21 04:04:33 +0000 2014',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 0,
u'follow_request_sent': False,
u'followers_count': 15,
u'following': False,
u'friends_count': 243,
u'geo_enabled': False,
u'id': 2400907248,
u'id_str': u'2400907248',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'Wayne stripe',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/447104843971174401/sMADmWJC_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/447104843971174401/sMADmWJC_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'weezyfuhreezy',
u'statuses_count': 78,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:08 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [32, 48],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [49, 58],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987873437548544,
u'id_str': u'460987873437548544',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u"Here's looking at you, Kid Rock #ruinamoviequote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue May 06 01:12:01 +0000 2008',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'Pro Duke Human',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 60,
u'follow_request_sent': False,
u'followers_count': 91,
u'following': False,
u'friends_count': 355,
u'geo_enabled': False,
u'id': 14667505,
u'id_str': u'14667505',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 3,
u'location': u'Santa Monica, CA',
u'name': u'SeanLoughlin',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/951133695/n503932324_1104910_6690_normal.jpg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/951133695/n503932324_1104910_6690_normal.jpg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'SeanLoughlin',
u'statuses_count': 153,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': None,
u'utc_offset': -25200,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:08 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [97, 113],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 8522892,
u'id_str': u'8522892',
u'indices': [3, 13],
u'name': u'Jeff Dwoskin',
u'screen_name': u'bigmacher'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [114, 123],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987871940599808,
u'id_str': u'460987871940599808',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 9,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:34:32 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [82, 98],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [99,
108],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 15,
u'favorited': False,
u'geo': None,
u'id': 460985456557977600,
u'id_str': u'460985456557977600',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 9,
u'retweeted': False,
u'source': u'web',
u'text': u'"E.T. phone home."\n"I\'m sorry, please deposit another 25 cents for long distance"\n#RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Aug 30 00:26:07 +0000 2007',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Comedian - Executive - Father - Entrepreneur - @absrdnews \nhttp://t.co/KRhwauiffV',
u'entities': {u'description': {u'urls': [{u'display_url': u'favstar.fm/users/bigmache\u2026',
u'expanded_url': u'http://favstar.fm/users/bigmacher/recent',
u'indices': [59,
81],
u'url': u'http://t.co/KRhwauiffV'}]},
u'url': {u'urls': [{u'display_url': u'jeffisfunny.com',
u'expanded_url': u'http://www.jeffisfunny.com',
u'indices': [0,
22],
u'url': u'http://t.co/FgkpQFL52k'}]}},
u'favourites_count': 7638,
u'follow_request_sent': False,
u'followers_count': 28308,
u'following': False,
u'friends_count': 13452,
u'geo_enabled': False,
u'id': 8522892,
u'id_str': u'8522892',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 339,
u'location': u'Detroit, Michigan',
u'name': u'Jeff Dwoskin',
u'notifications': False,
u'profile_background_color': u'9AE4E8',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/311759556/jeffisfunnytwitterbcgrnd.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/311759556/jeffisfunnytwitterbcgrnd.jpg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/8522892/1398217704',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000575169408/235cc183aca1193d012e374f18c85047_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000575169408/235cc183aca1193d012e374f18c85047_normal.jpeg',
u'profile_link_color': u'0000FF',
u'profile_sidebar_border_color': u'87BC44',
u'profile_sidebar_fill_color': u'E0FF92',
u'profile_text_color': u'000000',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'bigmacher',
u'statuses_count': 6338,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': u'http://t.co/FgkpQFL52k',
u'utc_offset': -14400,
u'verified': False}},
u'source': u'web',
u'text': u'RT @bigmacher: "E.T. phone home."\n"I\'m sorry, please deposit another 25 cents for long distance"\n#RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Feb 18 16:17:54 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'I mostly retweet my hilarious husband @bigmacher and his funny friends. Follow me on Pinterest: http://t.co/Iqc6OVefxM. Detroit, Michigan',
u'entities': {u'description': {u'urls': [{u'display_url': u'pinterest.com/dancinmom333',
u'expanded_url': u'http://pinterest.com/dancinmom333',
u'indices': [96,
118],
u'url': u'http://t.co/Iqc6OVefxM'}]}},
u'favourites_count': 2818,
u'follow_request_sent': False,
u'followers_count': 2801,
u'following': False,
u'friends_count': 2375,
u'geo_enabled': False,
u'id': 21210529,
u'id_str': u'21210529',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 10,
u'location': u'',
u'name': u'Robyn Dwoskin',
u'notifications': False,
u'profile_background_color': u'FF6699',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme11/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme11/bg.gif',
u'profile_background_tile': True,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/79765513/disney08-161_normal.jpg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/79765513/disney08-161_normal.jpg',
u'profile_link_color': u'B40B43',
u'profile_sidebar_border_color': u'CC3366',
u'profile_sidebar_fill_color': u'E5507E',
u'profile_text_color': u'362720',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'robyndwoskin',
u'statuses_count': 2123,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:08 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [77, 93],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [94, 103],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987871651196928,
u'id_str': u'460987871651196928',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"Fasten your seat belts It's going to be a bumpy ride, in Paul Walker's car. #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue Jun 21 01:24:54 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Professional Wrestler , Prize Winning Pizza Maker,Jedi, Scholar,Chippendale Dancer of the Year-1989',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 36,
u'follow_request_sent': False,
u'followers_count': 26,
u'following': False,
u'friends_count': 200,
u'geo_enabled': False,
u'id': 321105427,
u'id_str': u'321105427',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'Baltimore, MD',
u'name': u'Stewart Beefs',
u'notifications': False,
u'profile_background_color': u'022330',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/460499244453871616/w_4ngwwG.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/460499244453871616/w_4ngwwG.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/321105427/1398626400',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000690148736/c9994e561fac186f80bc385742e384dc_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000690148736/c9994e561fac186f80bc385742e384dc_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'000000',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'StewartBeefs',
u'statuses_count': 1902,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:07 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [87, 103],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [3, 12],
u'name': u'@midnight',
u'screen_name': u'midnight'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [104, 113],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987870959112192,
u'id_str': u'460987870959112192',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 46,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:31:09 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [73, 89],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [90,
99],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 109,
u'favorited': False,
u'geo': None,
u'id': 460984606343168000,
u'id_str': u'460984606343168000',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 46,
u'retweeted': False,
u'source': u'web',
u'text': u'You talkin\u2019 to me? I don\u2019t see a Bluetooth so you must be talkin\u2019 to me. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri May 10 18:11:58 +0000 2013',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Late night game show thing hosted by @nerdist on @ComedyCentral! (account run by a robot & two 15 yr old girls)',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'cc.com/atmidnight',
u'expanded_url': u'http://cc.com/atmidnight',
u'indices': [0,
22],
u'url': u'http://t.co/hKw8FJp9F5'}]}},
u'favourites_count': 18369,
u'follow_request_sent': False,
u'followers_count': 198802,
u'following': False,
u'friends_count': 794,
u'geo_enabled': False,
u'id': 1418745782,
u'id_str': u'1418745782',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 1335,
u'location': u'Home of the #HashtagWars',
u'name': u'@midnight',
u'notifications': False,
u'profile_background_color': u'131516',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000095387197/3e7dd25288ff089f6d09363d88684fe0.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000095387197/3e7dd25288ff089f6d09363d88684fe0.jpeg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1418745782/1398293133',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/459100954520850432/1J_Kr_3Q_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/459100954520850432/1J_Kr_3Q_normal.jpeg',
u'profile_link_color': u'18428F',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'EFEFEF',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'midnight',
u'statuses_count': 8315,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': u'http://t.co/hKw8FJp9F5',
u'utc_offset': -25200,
u'verified': True}},
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'RT @midnight: You talkin\u2019 to me? I don\u2019t see a Bluetooth so you must be talkin\u2019 to me. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue Apr 22 00:11:15 +0000 2014',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'Parody Brentley Account (Not affilated with Brentley Callender)',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 1226,
u'follow_request_sent': False,
u'followers_count': 137,
u'following': False,
u'friends_count': 119,
u'geo_enabled': False,
u'id': 2457316969,
u'id_str': u'2457316969',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'Brentley Callender',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2457316969/1398125849',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/458404308904857600/svt3suuY_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/458404308904857600/svt3suuY_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Murdaman3932',
u'statuses_count': 537,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:07 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [28, 44],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [45, 54],
u'name': u'@midnight',
u'screen_name': u'midnight'},
{u'id': 374357782,
u'id_str': u'374357782',
u'indices': [55, 63],
u'name': u'Discord',
u'screen_name': u'DlSCORD'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987869981450240,
u'id_str': u'460987869981450240',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
u'text': u'You had me at "Yo, bitch."\n\n#RuinAMovieQuote @midnight @DlSCORD',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue Sep 01 06:26:48 +0000 2009',
u'default_profile': True,
u'default_profile_image': False,
u'description': u"I'm a single dad whose love for his daughter is only rivaled by my self-loathing and weight. Sometimes I like to pretend I'm witty and/or creative.",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 957,
u'follow_request_sent': False,
u'followers_count': 255,
u'following': False,
u'friends_count': 260,
u'geo_enabled': False,
u'id': 70615359,
u'id_str': u'70615359',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 15,
u'location': u'Mothers basement. ',
u'name': u'Forever alone...',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/1063424331/IMG00932-20100708-0858_normal.jpg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/1063424331/IMG00932-20100708-0858_normal.jpg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'NosajRellim',
u'statuses_count': 7336,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:07 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [99, 115],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [0, 9],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987869960478720,
u'id_str': u'460987869960478720',
u'in_reply_to_screen_name': u'midnight',
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': 1418745782,
u'in_reply_to_user_id_str': u'1418745782',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>',
u'text': u"@midnight Shakes! Why did it have to be shakes!?!? I mean, seriously! I'm trying to lose weight! #RuinAMovieQuote",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Apr 09 05:23:04 +0000 2014',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 96,
u'follow_request_sent': False,
u'followers_count': 18,
u'following': False,
u'friends_count': 90,
u'geo_enabled': False,
u'id': 2434952695,
u'id_str': u'2434952695',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'Damien Mooneyham ',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2434952695/1397058957',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/453769361778417664/vp-11Ifl_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/453769361778417664/vp-11Ifl_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Damien_bad0men',
u'statuses_count': 74,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:07 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [83, 91], u'text': u'awkward'},
{u'indices': [92, 108],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [109, 118],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987868908105728,
u'id_str': u'460987868908105728',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"Dr. Sattler I refuse to think you're not familiar with, uh, strange, uh... uh..... #awkward #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Apr 26 23:06:41 +0000 2013',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 5,
u'follow_request_sent': False,
u'followers_count': 9,
u'following': False,
u'friends_count': 105,
u'geo_enabled': False,
u'id': 1383080929,
u'id_str': u'1383080929',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'Grady Sigg',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1383080929/1367024943',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/3578723494/982cf2e4c5e619c9d6c23400c9495f2c_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3578723494/982cf2e4c5e619c9d6c23400c9495f2c_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'gradysigg',
u'statuses_count': 329,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:07 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [116, 132],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [0, 9],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987868455112705,
u'id_str': u'460987868455112705',
u'in_reply_to_screen_name': u'midnight',
u'in_reply_to_status_id': 460984606343168000,
u'in_reply_to_status_id_str': u'460984606343168000',
u'in_reply_to_user_id': 1418745782,
u'in_reply_to_user_id_str': u'1418745782',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'@midnight We\'re on a mission from God, or whatever higher power you subscribe to. Let\'s just say "the Prime Mover." #RuinAMovieQuote',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Nov 30 05:22:16 +0000 2013',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"Pipe dope is like plumber's crack",
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'favstar.fm/users/elleohhe\u2026',
u'expanded_url': u'http://favstar.fm/users/elleohhell',
u'indices': [0, 22],
u'url': u'http://t.co/MApnPWHQuj'}]}},
u'favourites_count': 6023,
u'follow_request_sent': False,
u'followers_count': 2288,
u'following': False,
u'friends_count': 166,
u'geo_enabled': False,
u'id': 2201329547,
u'id_str': u'2201329547',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 73,
u'location': u'Regions Bank follows',
u'name': u'Elle',
u'notifications': False,
u'profile_background_color': u'0A362A',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000181803454/chYUle-i.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000181803454/chYUle-i.jpeg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2201329547/1385789447',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/459547111344713728/hUxCmLoD_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/459547111344713728/hUxCmLoD_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'000000',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'ElleOhHell',
u'statuses_count': 2461,
u'time_zone': None,
u'url': u'http://t.co/MApnPWHQuj',
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:07 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [89, 105],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 35129739,
u'id_str': u'35129739',
u'indices': [3, 17],
u'name': u'Matt Fowler',
u'screen_name': u'TheMattFowler'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [106, 115],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987867687579648,
u'id_str': u'460987867687579648',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 10,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:39:57 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [70, 86],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [87,
96],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 24,
u'favorited': False,
u'geo': None,
u'id': 460986822659944448,
u'id_str': u'460986822659944448',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 10,
u'retweeted': False,
u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
u'text': u'\u201cThe first rule of Fight Club is, you know, just have fun out there.\u201d #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Apr 25 03:14:32 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'(Founder/Writer - http://t.co/DueRlxEs, Writer - IGN TV) Complaining about things in between meals since 1874; http://t.co/MEwuSyvX',
u'entities': {u'description': {u'urls': [{u'display_url': u'Showrenity.com',
u'expanded_url': u'http://Showrenity.com',
u'indices': [18,
38],
u'url': u'http://t.co/DueRlxEs'},
{u'display_url': u'ign.com/tv',
u'expanded_url': u'http://www.ign.com/tv',
u'indices': [111,
131],
u'url': u'http://t.co/MEwuSyvX'}]},
u'url': {u'urls': [{u'display_url': u'Showrenity.com',
u'expanded_url': u'http://Showrenity.com',
u'indices': [0,
20],
u'url': u'http://t.co/DueRlxEs'}]}},
u'favourites_count': 327,
u'follow_request_sent': False,
u'followers_count': 16231,
u'following': False,
u'friends_count': 1362,
u'geo_enabled': True,
u'id': 35129739,
u'id_str': u'35129739',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 395,
u'location': u'D-FW, TX',
u'name': u'Matt Fowler',
u'notifications': False,
u'profile_background_color': u'C3F0F3',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/62632613/2009-12-28_22-04-24_75.24.251.40.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/62632613/2009-12-28_22-04-24_75.24.251.40.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/35129739/1348462036',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/436716575337349121/Y8PJCPI5_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/436716575337349121/Y8PJCPI5_normal.jpeg',
u'profile_link_color': u'53A515',
u'profile_sidebar_border_color': u'9CCF84',
u'profile_sidebar_fill_color': u'DDFFCC',
u'profile_text_color': u'1394A9',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'TheMattFowler',
u'statuses_count': 43717,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': u'http://t.co/DueRlxEs',
u'utc_offset': -25200,
u'verified': False}},
u'source': u'web',
u'text': u'RT @TheMattFowler: \u201cThe first rule of Fight Club is, you know, just have fun out there.\u201d #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Apr 11 00:48:14 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Music enthusiast. 18th century romanticist. Sapiosexual. Nyctophiliac. Christian. Fantasy/scifi/anime geek. Open. Odd. Wanderlust. Searching for my tribe.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 501,
u'follow_request_sent': False,
u'followers_count': 268,
u'following': False,
u'friends_count': 198,
u'geo_enabled': False,
u'id': 30356346,
u'id_str': u'30356346',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 3,
u'location': u'Canada',
u'name': u'AlexDeVries',
u'notifications': False,
u'profile_background_color': u'FFFFFF',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/457763892161028097/eWuFEzmm.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/457763892161028097/eWuFEzmm.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/30356346/1398442458',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/455224779981606912/dmbRLzrx_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/455224779981606912/dmbRLzrx_normal.jpeg',
u'profile_link_color': u'000000',
u'profile_sidebar_border_color': u'000000',
u'profile_sidebar_fill_color': u'FFFFFF',
u'profile_text_color': u'000000',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'AlexMDeVries',
u'statuses_count': 3462,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:07 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [70, 86],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [60, 69],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987867641442305,
u'id_str': u'460987867641442305',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'I drink your milkshake that brings all the boys to the yard @midnight #RuinAMovieQuote',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Apr 11 20:53:09 +0000 2014',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'Television. Popcorn. And Pals.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 326,
u'follow_request_sent': False,
u'followers_count': 63,
u'following': False,
u'friends_count': 880,
u'geo_enabled': False,
u'id': 2439075476,
u'id_str': u'2439075476',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 3,
u'location': u'',
u'name': u'Buzz.',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2439075476/1397255690',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/454760069373370368/gZQJQvhF_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/454760069373370368/gZQJQvhF_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'BuzzNotLiteYear',
u'statuses_count': 246,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:06 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [38, 54],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 15576928,
u'id_str': u'15576928',
u'indices': [3, 19],
u'name': u'shauna',
u'screen_name': u'goldengateblond'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [55, 64],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987867003887616,
u'id_str': u'460987867003887616',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 1,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:35:47 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [17, 33],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [34,
43],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 19,
u'favorited': False,
u'geo': None,
u'id': 460985772464963584,
u'id_str': u'460985772464963584',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 1,
u'retweeted': False,
u'source': u'web',
u'text': u'Bond. Gold Bond. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Jul 24 03:44:09 +0000 2008',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"Writer of words / @Blabberazzi / @WitStreamdotcom / @Impersonals / Loved by gay men the world over / If you had a favorite brazen hussy, I'd be it",
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'blabberazzi.com',
u'expanded_url': u'http://blabberazzi.com',
u'indices': [0,
22],
u'url': u'http://t.co/EF7LSJnIvJ'}]}},
u'favourites_count': 65742,
u'follow_request_sent': False,
u'followers_count': 8535,
u'following': False,
u'friends_count': 697,
u'geo_enabled': True,
u'id': 15576928,
u'id_str': u'15576928',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 1177,
u'location': u'',
u'name': u'shauna',
u'notifications': False,
u'profile_background_color': u'352726',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/24436390/const.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/24436390/const.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/15576928/1397966248',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/435876549594595328/R7vlKDrg_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/435876549594595328/R7vlKDrg_normal.jpeg',
u'profile_link_color': u'960014',
u'profile_sidebar_border_color': u'1F2616',
u'profile_sidebar_fill_color': u'D5DE6D',
u'profile_text_color': u'000000',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'goldengateblond',
u'statuses_count': 7977,
u'time_zone': u'Central Time (US & Canada)',
u'url': u'http://t.co/EF7LSJnIvJ',
u'utc_offset': -18000,
u'verified': False}},
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'RT @goldengateblond: Bond. Gold Bond. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Jul 07 14:52:58 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Bill Sweeney',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'kingpenguinband.com',
u'expanded_url': u'http://kingpenguinband.com',
u'indices': [0, 22],
u'url': u'http://t.co/nVQVZKwNUy'}]}},
u'favourites_count': 3818,
u'follow_request_sent': False,
u'followers_count': 1423,
u'following': False,
u'friends_count': 1644,
u'geo_enabled': True,
u'id': 331027889,
u'id_str': u'331027889',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 45,
u'location': u'',
u'name': u'KingPenguinRock',
u'notifications': False,
u'profile_background_color': u'9AE4E8',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/349066395/pysch.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/349066395/pysch.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/331027889/1398712472',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/460859084854419457/VIKglI7R_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/460859084854419457/VIKglI7R_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'BDDCAD',
u'profile_sidebar_fill_color': u'DDFFCC',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Kingpenguinrock',
u'statuses_count': 32706,
u'time_zone': None,
u'url': u'http://t.co/nVQVZKwNUy',
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:06 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [22, 38],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [39, 48],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987866307653632,
u'id_str': u'460987866307653632',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'You had me at Jello! #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Sep 25 04:03:07 +0000 2013',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 39,
u'follow_request_sent': False,
u'followers_count': 8,
u'following': False,
u'friends_count': 68,
u'geo_enabled': False,
u'id': 1902735834,
u'id_str': u'1902735834',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'Ted Basowski',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000504856199/b4736c9045ae6a439dcac09881dbb213_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000504856199/b4736c9045ae6a439dcac09881dbb213_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Chef_Ted_B',
u'statuses_count': 65,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:06 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [60, 76],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [77, 86],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987866022035456,
u'id_str': u'460987866022035456',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'I think this is the beginning of a beautiful e-lationship. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sun Mar 22 17:30:29 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Deeply flawed character with a weak back story.',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'travisclarkcomedy.com',
u'expanded_url': u'http://travisclarkcomedy.com',
u'indices': [0, 22],
u'url': u'http://t.co/1GAnY9PCLX'}]}},
u'favourites_count': 2399,
u'follow_request_sent': False,
u'followers_count': 1176,
u'following': False,
u'friends_count': 614,
u'geo_enabled': False,
u'id': 25847036,
u'id_str': u'25847036',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 41,
u'location': u'Los Angeles, CA',
u'name': u'Travis Clark',
u'notifications': False,
u'profile_background_color': u'1A1B1F',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/309533349/T.Clark.Final-web.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/309533349/T.Clark.Final-web.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/25847036/1398210138',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/450185608019718144/fxWJhCsc_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/450185608019718144/fxWJhCsc_normal.jpeg',
u'profile_link_color': u'2FC2EF',
u'profile_sidebar_border_color': u'181A1E',
u'profile_sidebar_fill_color': u'252429',
u'profile_text_color': u'666666',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'thatguytravis',
u'statuses_count': 13366,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': u'http://t.co/1GAnY9PCLX',
u'utc_offset': -25200,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:06 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [45, 61],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [35, 44],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987865724645377,
u'id_str': u'460987865724645377',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u"You're a Washington Wizard, Harry. @midnight #ruinamoviequote",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Mon Mar 01 02:56:37 +0000 2010',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Geek with mini-mogul aspirations. Video games and porn sustain me. NSFW. 18+ #nerdjizz is my pride and joy.',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'nerdjizz.com',
u'expanded_url': u'http://www.nerdjizz.com',
u'indices': [0, 22],
u'url': u'http://t.co/5iNGMui9Af'}]}},
u'favourites_count': 6203,
u'follow_request_sent': False,
u'followers_count': 3526,
u'following': False,
u'friends_count': 505,
u'geo_enabled': False,
u'id': 118568276,
u'id_str': u'118568276',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 110,
u'location': u'Kentucky',
u'name': u'Harvey Walker',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/79739293/1_1600.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/79739293/1_1600.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/118568276/1392888336',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/459936894327861248/0jPoc5cL_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/459936894327861248/0jPoc5cL_normal.jpeg',
u'profile_link_color': u'6320F5',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'F5E7E7',
u'profile_text_color': u'0F0102',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'harveywalker',
u'statuses_count': 25416,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': u'http://t.co/5iNGMui9Af',
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:06 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [36, 52],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [53, 62],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987864252022784,
u'id_str': u'460987864252022784',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'"Take the guns, leave the cannoli." #ruinamoviequote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Mon Apr 27 17:33:49 +0000 2009',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'Person/parent/spouse/student. Hella kids. Infantry husband. I sell old dishes and clothes online for work and make things for fun. Exceptionally non-descript.',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'etsy.com/shop/brasspear\u2026',
u'expanded_url': u'http://etsy.com/shop/brasspearvintage',
u'indices': [0, 22],
u'url': u'http://t.co/OWHGsdZwP2'}]}},
u'favourites_count': 2913,
u'follow_request_sent': False,
u'followers_count': 190,
u'following': False,
u'friends_count': 341,
u'geo_enabled': True,
u'id': 35802353,
u'id_str': u'35802353',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 7,
u'location': u'Colorado Springs, CO',
u'name': u'M Nichols',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/35802353/1379561154',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/446426612817358848/lw99EZtI_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/446426612817358848/lw99EZtI_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Thndrdomesticty',
u'statuses_count': 4510,
u'time_zone': u'Central Time (US & Canada)',
u'url': u'http://t.co/OWHGsdZwP2',
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:06 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [107, 123],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [124, 133],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987863585132544,
u'id_str': u'460987863585132544',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'"You take the blue pill - the diarrhea stops. You take the red pill - I\'ll shove a rabbit down your hole." #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Dec 06 12:52:41 +0000 2013',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'I like math. I also like jokes. Follow me on this tug of war.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 85,
u'follow_request_sent': False,
u'followers_count': 36,
u'following': False,
u'friends_count': 119,
u'geo_enabled': False,
u'id': 2232934945,
u'id_str': u'2232934945',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'Champaign, IL',
u'name': u'Juan Villeta-Garcia',
u'notifications': False,
u'profile_background_color': u'022330',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/435813881970032641/5sIbPqEB.png',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/435813881970032641/5sIbPqEB.png',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2232934945/1398631032',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000836497408/59ce9786097d0a17bc0642878269891f_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000836497408/59ce9786097d0a17bc0642878269891f_normal.jpeg',
u'profile_link_color': u'333333',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'0E1621',
u'profile_text_color': u'CB9934',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'JuanVillGar',
u'statuses_count': 514,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:05 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [39, 55],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [56, 65],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987863027314688,
u'id_str': u'460987863027314688',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'"Frankly my dear, I don\'t give a fuck" #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Mar 12 20:34:46 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'FoodCentric view of the Universe. Blentron on Vine (and everywhere else)',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 133,
u'follow_request_sent': False,
u'followers_count': 113,
u'following': False,
u'friends_count': 164,
u'geo_enabled': True,
u'id': 264992633,
u'id_str': u'264992633',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 1,
u'location': u'Toronto, Ontario',
u'name': u'\uf8ffAdam Blendique',
u'notifications': False,
u'profile_background_color': u'022330',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme15/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme15/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/3371363126/65c2fa24a853c74ea8edb290cd8d2253_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3371363126/65c2fa24a853c74ea8edb290cd8d2253_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'A8C7F7',
u'profile_sidebar_fill_color': u'C0DFEC',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'fattonystark',
u'statuses_count': 3694,
u'time_zone': u'Atlantic Time (Canada)',
u'url': None,
u'utc_offset': -10800,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:05 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [23, 39],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [0, 9],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987862821773314,
u'id_str': u'460987862821773314',
u'in_reply_to_screen_name': u'midnight',
u'in_reply_to_status_id': 460984446133346304,
u'in_reply_to_status_id_str': u'460984446133346304',
u'in_reply_to_user_id': 1418745782,
u'in_reply_to_user_id_str': u'1418745782',
u'lang': u'es',
u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'@midnight YOLO Adrian! #RuinAMovieQuote',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Jan 04 21:09:37 +0000 2013',
u'default_profile': False,
u'default_profile_image': True,
u'description': u"You'll get to know me!!!",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 444,
u'follow_request_sent': False,
u'followers_count': 56,
u'following': False,
u'friends_count': 401,
u'geo_enabled': True,
u'id': 1061432322,
u'id_str': u'1061432322',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'Manhattan KS',
u'name': u'Cari',
u'notifications': False,
u'profile_background_color': u'ACDED6',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme18/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme18/bg.gif',
u'profile_background_tile': False,
u'profile_image_url': u'http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png',
u'profile_image_url_https': u'https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png',
u'profile_link_color': u'038543',
u'profile_sidebar_border_color': u'EEEEEE',
u'profile_sidebar_fill_color': u'F6F6F6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'lovesthefood37',
u'statuses_count': 1308,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:05 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [50, 66],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [67, 76],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987859411824641,
u'id_str': u'460987859411824641',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'soylent green is a plant based cleaning product! #ruinamoviequote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Jun 24 17:01:25 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"i shouldn't be allowed near a computer. or stairs. i'm sorry in advance for my tweets.",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 109,
u'follow_request_sent': False,
u'followers_count': 175,
u'following': False,
u'friends_count': 118,
u'geo_enabled': False,
u'id': 50363575,
u'id_str': u'50363575',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'5280',
u'name': u'meredith struggles',
u'notifications': False,
u'profile_background_color': u'642D8B',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/365358215/299023_10150378085549114_805899113_8127354_1339300885_n.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/365358215/299023_10150378085549114_805899113_8127354_1339300885_n.jpg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/50363575/1398199401',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000619397396/c055eb7611f2b51124093e59c3efb96c_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000619397396/c055eb7611f2b51124093e59c3efb96c_normal.jpeg',
u'profile_link_color': u'FF0000',
u'profile_sidebar_border_color': u'000000',
u'profile_sidebar_fill_color': u'7AC3EE',
u'profile_text_color': u'3D1957',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'mere_struggles',
u'statuses_count': 4895,
u'time_zone': u'Mountain Time (US & Canada)',
u'url': None,
u'utc_offset': -21600,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:04 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [66, 82],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 27553288,
u'id_str': u'27553288',
u'indices': [0, 14],
u'name': u'John Ross Bowie',
u'screen_name': u'JohnRossBowie'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [83, 92],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987858288132096,
u'id_str': u'460987858288132096',
u'in_reply_to_screen_name': u'JohnRossBowie',
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': 27553288,
u'in_reply_to_user_id_str': u'27553288',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>',
u'text': u'@JohnRossBowie: You had me at "Hello. You are in my crawlspace." #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sun Jun 21 05:11:04 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Art Director, Creative stuff, intelligent ideas, Liberal, rational thinking, TV junkie: Suits, Arrow, Scandal, VD, Blacklist, TWD, Thrones, Bates Motel, BSG',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'behance.net/MiguelRiveraCr\u2026',
u'expanded_url': u'http://www.behance.net/MiguelRiveraCreative',
u'indices': [0, 22],
u'url': u'http://t.co/OAZmY0QEJS'}]}},
u'favourites_count': 294,
u'follow_request_sent': False,
u'followers_count': 59,
u'following': False,
u'friends_count': 266,
u'geo_enabled': False,
u'id': 49239671,
u'id_str': u'49239671',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'',
u'name': u'mick271',
u'notifications': False,
u'profile_background_color': u'9AE4E8',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme16/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme16/bg.gif',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/460109006238146560/np9x_mcV_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/460109006238146560/np9x_mcV_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'BDDCAD',
u'profile_sidebar_fill_color': u'DDFFCC',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'mick271',
u'statuses_count': 3902,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': u'http://t.co/OAZmY0QEJS',
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:04 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [73, 89],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [63, 72],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987855876009984,
u'id_str': u'460987855876009984',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"You can't handle the soup! (It's really hot. blow on it first) @midnight #ruinamoviequote",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Mon Aug 01 19:40:13 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'I try to do the least harm possible while also having fun. Chicago stand up comedian who will punch you in the face if you say comedianne, but not really.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 480,
u'follow_request_sent': False,
u'followers_count': 713,
u'following': False,
u'friends_count': 245,
u'geo_enabled': True,
u'id': 346748489,
u'id_str': u'346748489',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 11,
u'location': u'chicago',
u'name': u'jeanie doogan',
u'notifications': False,
u'profile_background_color': u'131516',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme14/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme14/bg.gif',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/346748489/1398384107',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/457723285258506241/7SKNf-wB_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/457723285258506241/7SKNf-wB_normal.jpeg',
u'profile_link_color': u'450099',
u'profile_sidebar_border_color': u'EEEEEE',
u'profile_sidebar_fill_color': u'EFEFEF',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'jeaniedoogan',
u'statuses_count': 3457,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:04 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [52, 68],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [0, 9],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987855490142208,
u'id_str': u'460987855490142208',
u'in_reply_to_screen_name': u'midnight',
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': 1418745782,
u'in_reply_to_user_id_str': u'1418745782',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u"@midnight We're not in Kansas City Missouri anymore #RuinAMovieQuote",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sun Aug 22 03:11:51 +0000 2010',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"Keeping it awesome since '82",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 600,
u'follow_request_sent': False,
u'followers_count': 91,
u'following': False,
u'friends_count': 738,
u'geo_enabled': True,
u'id': 181402985,
u'id_str': u'181402985',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 3,
u'location': u'Scottsdale Arizona ',
u'name': u'Jill A. Jones',
u'notifications': False,
u'profile_background_color': u'7B148F',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme17/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme17/bg.gif',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/181402985/1348368591',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/3587497101/67600ac7b41bf0ef6e2d20003b6ac7db_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3587497101/67600ac7b41bf0ef6e2d20003b6ac7db_normal.jpeg',
u'profile_link_color': u'CC3366',
u'profile_sidebar_border_color': u'A6144A',
u'profile_sidebar_fill_color': u'1B93A8',
u'profile_text_color': u'501580',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'JillJ_194',
u'statuses_count': 2241,
u'time_zone': u'Arizona',
u'url': None,
u'utc_offset': -25200,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:04 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [113, 129],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [130, 139],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987854911336449,
u'id_str': u'460987854911336449',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'"we\'re gonna need a bigger boat, because, like, WOW, that shark is HUGE. i mean, did you see that shark? JESUS." #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Mon Feb 25 18:59:30 +0000 2008',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Scientist.',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'vice.com/author/josh-an\u2026',
u'expanded_url': u'http://www.vice.com/author/josh-androsky',
u'indices': [0, 22],
u'url': u'http://t.co/NC61wSmZVo'}]}},
u'favourites_count': 14764,
u'follow_request_sent': False,
u'followers_count': 4341,
u'following': False,
u'friends_count': 911,
u'geo_enabled': True,
u'id': 13955432,
u'id_str': u'13955432',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 132,
u'location': u'Los Angeles',
u'name': u'josh androsky',
u'notifications': False,
u'profile_background_color': u'9AE4E8',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/2278892/BakingSodaBoy.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/2278892/BakingSodaBoy.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/13955432/1387662331',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/459868742298509312/wQjoit1V_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/459868742298509312/wQjoit1V_normal.jpeg',
u'profile_link_color': u'0000FF',
u'profile_sidebar_border_color': u'87BC44',
u'profile_sidebar_fill_color': u'E0FF92',
u'profile_text_color': u'000000',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'ShutUpAndrosky',
u'statuses_count': 16539,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': u'http://t.co/NC61wSmZVo',
u'utc_offset': -25200,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:04 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [99, 115],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 8522892,
u'id_str': u'8522892',
u'indices': [3, 13],
u'name': u'Jeff Dwoskin',
u'screen_name': u'bigmacher'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [116, 125],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987854571589634,
u'id_str': u'460987854571589634',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 2,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:41:39 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [84,
100],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [101,
110],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 5,
u'favorited': False,
u'geo': None,
u'id': 460987248872529920,
u'id_str': u'460987248872529920',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 2,
u'retweeted': False,
u'source': u'web',
u'text': u'"Elementary school, my dear Watson, is not where you should be trolling for dates."\n#RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Aug 30 00:26:07 +0000 2007',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Comedian - Executive - Father - Entrepreneur - @absrdnews \nhttp://t.co/KRhwauiffV',
u'entities': {u'description': {u'urls': [{u'display_url': u'favstar.fm/users/bigmache\u2026',
u'expanded_url': u'http://favstar.fm/users/bigmacher/recent',
u'indices': [59,
81],
u'url': u'http://t.co/KRhwauiffV'}]},
u'url': {u'urls': [{u'display_url': u'jeffisfunny.com',
u'expanded_url': u'http://www.jeffisfunny.com',
u'indices': [0,
22],
u'url': u'http://t.co/FgkpQFL52k'}]}},
u'favourites_count': 7638,
u'follow_request_sent': False,
u'followers_count': 28308,
u'following': False,
u'friends_count': 13452,
u'geo_enabled': False,
u'id': 8522892,
u'id_str': u'8522892',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 339,
u'location': u'Detroit, Michigan',
u'name': u'Jeff Dwoskin',
u'notifications': False,
u'profile_background_color': u'9AE4E8',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/311759556/jeffisfunnytwitterbcgrnd.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/311759556/jeffisfunnytwitterbcgrnd.jpg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/8522892/1398217704',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000575169408/235cc183aca1193d012e374f18c85047_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000575169408/235cc183aca1193d012e374f18c85047_normal.jpeg',
u'profile_link_color': u'0000FF',
u'profile_sidebar_border_color': u'87BC44',
u'profile_sidebar_fill_color': u'E0FF92',
u'profile_text_color': u'000000',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'bigmacher',
u'statuses_count': 6338,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': u'http://t.co/FgkpQFL52k',
u'utc_offset': -14400,
u'verified': False}},
u'source': u'web',
u'text': u'RT @bigmacher: "Elementary school, my dear Watson, is not where you should be trolling for dates."\n#RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Jan 18 18:03:53 +0000 2008',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Sane cat lady living in a crazy world.',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'whencatsattack.com',
u'expanded_url': u'http://www.whencatsattack.com',
u'indices': [0, 22],
u'url': u'http://t.co/SJ6H6Buj8m'}]}},
u'favourites_count': 351,
u'follow_request_sent': False,
u'followers_count': 32,
u'following': False,
u'friends_count': 137,
u'geo_enabled': False,
u'id': 12408802,
u'id_str': u'12408802',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'Tennessee',
u'name': u'Michelle S',
u'notifications': False,
u'profile_background_color': u'131516',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme14/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme14/bg.gif',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/12408802/1367347901',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/3596487207/e9a213ca0a20e621790ff61fbc4713c3_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3596487207/e9a213ca0a20e621790ff61fbc4713c3_normal.jpeg',
u'profile_link_color': u'009999',
u'profile_sidebar_border_color': u'EEEEEE',
u'profile_sidebar_fill_color': u'EFEFEF',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'whencatsattack',
u'statuses_count': 712,
u'time_zone': u'America/Chicago',
u'url': u'http://t.co/SJ6H6Buj8m',
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:03 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [38, 54],
u'text': u'RuinaMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [55, 64],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987852235358209,
u'id_str': u'460987852235358209',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="https://twitter.com/download/android" rel="nofollow">Twitter for Android Tablets</a>',
u'text': u'I feel the need, the need, for tweed! #RuinaMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Jan 09 17:08:19 +0000 2014',
u'default_profile': True,
u'default_profile_image': False,
u'description': u"If Yogi Berra, Mitch Hedberg, and Rick Moranis ever hooked up, they'd make a me.",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 37,
u'follow_request_sent': False,
u'followers_count': 28,
u'following': False,
u'friends_count': 64,
u'geo_enabled': True,
u'id': 2271181113,
u'id_str': u'2271181113',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'Nate Bigger',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/421347010080694272/8y53oelK_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/421347010080694272/8y53oelK_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'BiggerNate',
u'statuses_count': 153,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:02 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [88, 104],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [105, 114],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987847827156992,
u'id_str': u'460987847827156992',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
u'text': u'I have a certain set of skills, I learned at a small tecnical school, in HVAC, mostly. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Feb 19 16:27:55 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Average geeky white male... Father, veteran, writer, thinker / Education Advocate',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 922,
u'follow_request_sent': False,
u'followers_count': 81,
u'following': False,
u'friends_count': 65,
u'geo_enabled': True,
u'id': 21313083,
u'id_str': u'21313083',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'Memphis, TN',
u'name': u'Keith ',
u'notifications': False,
u'profile_background_color': u'1A1B1F',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/5234157/36_Obscure_digital_art_free_dekstopwallpaper_e.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/5234157/36_Obscure_digital_art_free_dekstopwallpaper_e.jpg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/21313083/1397604961',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/456212839464968192/PLtdrnMl_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/456212839464968192/PLtdrnMl_normal.jpeg',
u'profile_link_color': u'2FC2EF',
u'profile_sidebar_border_color': u'000000',
u'profile_sidebar_fill_color': u'252429',
u'profile_text_color': u'666666',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Kamichal',
u'statuses_count': 5904,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:02 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [60, 76],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [77, 86],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987847210590209,
u'id_str': u'460987847210590209',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'Ary, when someone asks you if you\'re a dog, you say "YES"! #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue Jun 29 16:56:28 +0000 2010',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"I amuse myself. I'm an artist and blogger who makes no money.. And I live my life three quarters of a Fast and the Furious quote at a time.",
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'thepreviewreviewing.weebly.com/my-preview-re-\u2026',
u'expanded_url': u'http://thepreviewreviewing.weebly.com/my-preview-re-viewing-blog.html',
u'indices': [0, 22],
u'url': u'http://t.co/dbzOGqjzTt'}]}},
u'favourites_count': 758,
u'follow_request_sent': False,
u'followers_count': 184,
u'following': False,
u'friends_count': 159,
u'geo_enabled': True,
u'id': 160974551,
u'id_str': u'160974551',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 9,
u'location': u'Kansas City',
u'name': u'Duffzilla',
u'notifications': False,
u'profile_background_color': u'352726',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/440932179229437952/10th2Ibe.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/440932179229437952/10th2Ibe.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/160974551/1393961356',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000338275178/c32da687fc87098d9d508ac46497559b_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000338275178/c32da687fc87098d9d508ac46497559b_normal.jpeg',
u'profile_link_color': u'D02B55',
u'profile_sidebar_border_color': u'000000',
u'profile_sidebar_fill_color': u'A0C5C7',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'paintmyart',
u'statuses_count': 6444,
u'time_zone': u'Central Time (US & Canada)',
u'url': u'http://t.co/dbzOGqjzTt',
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:02 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [44, 60],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [61, 70],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987846673723392,
u'id_str': u'460987846673723392',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'No work and all play makes Jack a happy boy #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Jun 24 19:11:57 +0000 2010',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 24,
u'follow_request_sent': False,
u'followers_count': 8,
u'following': False,
u'friends_count': 46,
u'geo_enabled': False,
u'id': 159205449,
u'id_str': u'159205449',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'Portland, Oregon',
u'name': u'Sadie Bell',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/159205449/1357630258',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/421521169791987713/5MpG2VV8_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/421521169791987713/5MpG2VV8_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'sadiehbell',
u'statuses_count': 256,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:01 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [23, 39],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [40, 49],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987846003027968,
u'id_str': u'460987846003027968',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'THIS IS SHARTAAAAAAAAA #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Feb 05 22:59:59 +0000 2014',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 11,
u'follow_request_sent': False,
u'followers_count': 2,
u'following': False,
u'friends_count': 18,
u'geo_enabled': False,
u'id': 2329469510,
u'id_str': u'2329469510',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'Matilda Granger',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/431286496989941760/l8F6HdLE_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/431286496989941760/l8F6HdLE_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'SquidFight',
u'statuses_count': 280,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:01 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [68, 84],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 6540432,
u'id_str': u'6540432',
u'indices': [3, 15],
u'name': u'gigglechick',
u'screen_name': u'gigglechick'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [85, 94],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987845893951488,
u'id_str': u'460987845893951488',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 1,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:35:53 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [51, 67],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [68,
77],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 4,
u'favorited': False,
u'geo': None,
u'id': 460985795910725632,
u'id_str': u'460985795910725632',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 1,
u'retweeted': False,
u'source': u'web',
u'text': u'"Download it, Sam. Download \'As Time Goes By.\'" -- #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sun Jun 03 12:10:23 +0000 2007',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'web designer for comedians... \r\nalso, I am addicted to @midnight hashtag wars (feel free to RT my stuff. xoxo)',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'gigglechickinteractive.com',
u'expanded_url': u'http://www.gigglechickinteractive.com',
u'indices': [0,
22],
u'url': u'http://t.co/Jz2pgYx0C8'}]}},
u'favourites_count': 5755,
u'follow_request_sent': False,
u'followers_count': 1439,
u'following': False,
u'friends_count': 1755,
u'geo_enabled': True,
u'id': 6540432,
u'id_str': u'6540432',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 65,
u'location': u'New Jersey',
u'name': u'gigglechick',
u'notifications': False,
u'profile_background_color': u'E53C94',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000056843111/34a90eeadb5b98716572662865960cf3.png',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000056843111/34a90eeadb5b98716572662865960cf3.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/6540432/1398544703',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/426594892693790721/r0s81nko_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/426594892693790721/r0s81nko_normal.jpeg',
u'profile_link_color': u'E53C93',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'FFFFFF',
u'profile_text_color': u'000000',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'gigglechick',
u'statuses_count': 5882,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': u'http://t.co/Jz2pgYx0C8',
u'utc_offset': -14400,
u'verified': False}},
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'RT @gigglechick: "Download it, Sam. Download \'As Time Goes By.\'" -- #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Jul 07 14:52:58 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Bill Sweeney',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'kingpenguinband.com',
u'expanded_url': u'http://kingpenguinband.com',
u'indices': [0, 22],
u'url': u'http://t.co/nVQVZKwNUy'}]}},
u'favourites_count': 3818,
u'follow_request_sent': False,
u'followers_count': 1423,
u'following': False,
u'friends_count': 1644,
u'geo_enabled': True,
u'id': 331027889,
u'id_str': u'331027889',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 45,
u'location': u'',
u'name': u'KingPenguinRock',
u'notifications': False,
u'profile_background_color': u'9AE4E8',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/349066395/pysch.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/349066395/pysch.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/331027889/1398712472',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/460859084854419457/VIKglI7R_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/460859084854419457/VIKglI7R_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'BDDCAD',
u'profile_sidebar_fill_color': u'DDFFCC',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Kingpenguinrock',
u'statuses_count': 32706,
u'time_zone': None,
u'url': u'http://t.co/nVQVZKwNUy',
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:01 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [0, 16],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [51, 60],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987845885165569,
u'id_str': u'460987845885165569',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
u'text': u"#RuinAMovieQuote There's no place like home depot. @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Aug 15 00:51:55 +0000 2008',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Still stoked about the earbuds I got for Xmas.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 362,
u'follow_request_sent': False,
u'followers_count': 456,
u'following': False,
u'friends_count': 902,
u'geo_enabled': False,
u'id': 15857987,
u'id_str': u'15857987',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 7,
u'location': u'Minneapolis, MN',
u'name': u'Johnny Crickets',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/311441125/forest-tunnel.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/311441125/forest-tunnel.jpg',
u'profile_background_tile': True,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/419101257693814784/ujL3x4y3_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/419101257693814784/ujL3x4y3_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'jperk1',
u'statuses_count': 13047,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:01 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [26, 42],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [43, 52],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 1,
u'favorited': False,
u'geo': None,
u'id': 460987845776125953,
u'id_str': u'460987845776125953',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'Blonde... Legally Blonde #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Aug 21 14:58:28 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Panda, Canadian, Pharmacist, Fursuiter, Head of Marketing at Indyfurcon. Staff for MotorCityFurryCon. THATS ME! ^_^',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 1941,
u'follow_request_sent': False,
u'followers_count': 1110,
u'following': False,
u'friends_count': 836,
u'geo_enabled': False,
u'id': 67627023,
u'id_str': u'67627023',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 23,
u'location': u'The Great White North',
u'name': u'That trek panda guy',
u'notifications': False,
u'profile_background_color': u'0937EB',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/639502169/qfnlo4umq0axyhy7gaem.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/639502169/qfnlo4umq0axyhy7gaem.jpeg',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/2530116456/5jbteym8r6bl99ucq4u7_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/2530116456/5jbteym8r6bl99ucq4u7_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'PandezPanda',
u'statuses_count': 28166,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:01 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [72, 88],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [89, 98],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987844748910592,
u'id_str': u'460987844748910592',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'Was it over when the Germans, I mean the Japanese, bombed Pearl Harbor? #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue Dec 28 01:43:09 +0000 2010',
u'default_profile': True,
u'default_profile_image': False,
u'description': u"Loner. Rebel. You don't want to get mixed up with a guy like me.",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 44,
u'follow_request_sent': False,
u'followers_count': 10,
u'following': False,
u'friends_count': 29,
u'geo_enabled': False,
u'id': 231260103,
u'id_str': u'231260103',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'Chris Bradley',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/459896116587143168/SDmEtKIs_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/459896116587143168/SDmEtKIs_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Barabbas70',
u'statuses_count': 423,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:01 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [29, 45],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [46, 55],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987843959992320,
u'id_str': u'460987843959992320',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'"They call me MR. BELVEDERE" #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue Mar 22 03:42:06 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Actor and Writer of the Entertainment, Stand up comedian, Pro wrestling fan, Raiders fan, Come for the Sexy, Stay for the Funny',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'richardgustason.weebly.com',
u'expanded_url': u'http://www.richardgustason.weebly.com',
u'indices': [0, 22],
u'url': u'http://t.co/TmU5yTqaIB'}]}},
u'favourites_count': 2597,
u'follow_request_sent': False,
u'followers_count': 603,
u'following': False,
u'friends_count': 708,
u'geo_enabled': True,
u'id': 270171383,
u'id_str': u'270171383',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 31,
u'location': u'Colorado Springs, CO ',
u'name': u'Richard Gustason',
u'notifications': False,
u'profile_background_color': u'1A1B1F',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/444975604501204992/Re1M67dD.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/444975604501204992/Re1M67dD.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/270171383/1393077833',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000855736330/2ab1a7bcde4e474c645a07470e501243_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000855736330/2ab1a7bcde4e474c645a07470e501243_normal.jpeg',
u'profile_link_color': u'999696',
u'profile_sidebar_border_color': u'000000',
u'profile_sidebar_fill_color': u'252429',
u'profile_text_color': u'666666',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'richgustason',
u'statuses_count': 17791,
u'time_zone': u'Mountain Time (US & Canada)',
u'url': u'http://t.co/TmU5yTqaIB',
u'utc_offset': -21600,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:01 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [18, 34],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [35, 44],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987843503214592,
u'id_str': u'460987843503214592',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
u'text': u'I see dead babies #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Aug 06 23:04:15 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Buckeye. Avid Time Traveler. Knower of Things.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 50,
u'follow_request_sent': False,
u'followers_count': 107,
u'following': False,
u'friends_count': 324,
u'geo_enabled': True,
u'id': 63568650,
u'id_str': u'63568650',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 4,
u'location': u'Columbus, Ohio',
u'name': u'Nick Marsh',
u'notifications': False,
u'profile_background_color': u'FFFFFF',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/453769832605818880/_A5j3-7B.png',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/453769832605818880/_A5j3-7B.png',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/63568650/1397020936',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/2208546880/Nick-and-Brutus_normal.jpg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/2208546880/Nick-and-Brutus_normal.jpg',
u'profile_link_color': u'000000',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'FFFFFF',
u'profile_text_color': u'000000',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'NickMMarsh',
u'statuses_count': 6609,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:01 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [56, 72],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [73, 82],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987843247353856,
u'id_str': u'460987843247353856',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"I'm the King of the Jew, Jesus Proclaimed to His Mother #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Nov 09 19:16:20 +0000 2013',
u'default_profile': True,
u'default_profile_image': True,
u'description': u'Artist, horror film enthusiast, and lovable douche',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 1,
u'follow_request_sent': False,
u'followers_count': 5,
u'following': False,
u'friends_count': 50,
u'geo_enabled': False,
u'id': 2174852507,
u'id_str': u'2174852507',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'David Feldman',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png',
u'profile_image_url_https': u'https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'dhfeldman',
u'statuses_count': 294,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:01 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [66, 82],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [83, 92],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987842668134401,
u'id_str': u'460987842668134401',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'"Here\'s looking at you, kid, through a hole in the bathroom wall" #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Feb 18 03:53:50 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'I enjoy horseback riding, long walks on the beach and anal sex',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 924,
u'follow_request_sent': False,
u'followers_count': 92,
u'following': False,
u'friends_count': 122,
u'geo_enabled': True,
u'id': 21166595,
u'id_str': u'21166595',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'Corning NY',
u'name': u'Drinx',
u'notifications': False,
u'profile_background_color': u'131516',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme14/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme14/bg.gif',
u'profile_background_tile': True,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000422620425/554a55bc4367b58c3ef7262e97c97988_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000422620425/554a55bc4367b58c3ef7262e97c97988_normal.jpeg',
u'profile_link_color': u'009999',
u'profile_sidebar_border_color': u'EEEEEE',
u'profile_sidebar_fill_color': u'EFEFEF',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'MrDrinx',
u'statuses_count': 1865,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:00 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [112, 128],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [129, 138],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 1,
u'favorited': False,
u'geo': None,
u'id': 460987842253324288,
u'id_str': u'460987842253324288',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'"Here\'s looking at you kid." (Camera pans out to reveal a toddler and he grabs the child and plants one on her) #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sun Oct 16 22:23:34 +0000 2011',
u'default_profile': True,
u'default_profile_image': False,
u'description': u"Writer. Occasional Actor. Improviser. Your Mom's Favorite Of All Your Friends.",
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'leaheevans.blogspot.com',
u'expanded_url': u'http://leaheevans.blogspot.com',
u'indices': [0, 22],
u'url': u'http://t.co/IyX6gj5vwR'}]}},
u'favourites_count': 462,
u'follow_request_sent': False,
u'followers_count': 541,
u'following': False,
u'friends_count': 536,
u'geo_enabled': True,
u'id': 392355483,
u'id_str': u'392355483',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 16,
u'location': u'NYC',
u'name': u'Leah Evans',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/392355483/1390105740',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/457707267115057152/8ae0Sro__normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/457707267115057152/8ae0Sro__normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'leahevans88',
u'statuses_count': 11259,
u'time_zone': None,
u'url': u'http://t.co/IyX6gj5vwR',
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:00 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [31, 47],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [48, 57],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987841841860608,
u'id_str': u'460987841841860608',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u"I'll be your Huckleberry Hound #ruinamoviequote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Jan 16 20:44:32 +0000 2014',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Podcats, Top Fives, Videos & More! http://t.co/94weiSDxxU \r\nhttp://t.co/M8aljTRlPN\r\nhttp://t.co/nuMfvK3obU',
u'entities': {u'description': {u'urls': [{u'display_url': u'explodeded.com',
u'expanded_url': u'http://www.explodeded.com',
u'indices': [36,
58],
u'url': u'http://t.co/94weiSDxxU'},
{u'display_url': u'twitter.com/explodeded69',
u'expanded_url': u'http://twitter.com/explodeded69',
u'indices': [62,
84],
u'url': u'http://t.co/M8aljTRlPN'},
{u'display_url': u'facebook.com/explodeded',
u'expanded_url': u'http://facebook.com/explodeded',
u'indices': [86,
108],
u'url': u'http://t.co/nuMfvK3obU'}]},
u'url': {u'urls': [{u'display_url': u'explodeded.com',
u'expanded_url': u'http://www.explodeded.com',
u'indices': [0, 22],
u'url': u'http://t.co/94weiSDxxU'}]}},
u'favourites_count': 60,
u'follow_request_sent': False,
u'followers_count': 805,
u'following': False,
u'friends_count': 1959,
u'geo_enabled': False,
u'id': 2294997044,
u'id_str': u'2294997044',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 5,
u'location': u'',
u'name': u'Explodeded',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000169402794/CrPb8uiy.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000169402794/CrPb8uiy.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2294997044/1389905575',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/423920434178846720/zCYTWogG_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/423920434178846720/zCYTWogG_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'explodeded69',
u'statuses_count': 1447,
u'time_zone': u'Central Time (US & Canada)',
u'url': u'http://t.co/94weiSDxxU',
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:00 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [62, 78],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 7739532,
u'id_str': u'7739532',
u'indices': [3, 14],
u'name': u'retrocrush',
u'screen_name': u'retrocrush'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [79, 88],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987838813978624,
u'id_str': u'460987838813978624',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 1,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:40:07 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [46, 62],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [63,
72],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 3,
u'favorited': False,
u'geo': None,
u'id': 460986860982902784,
u'id_str': u'460986860982902784',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 1,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
u'text': u'"I find your lack of Faith Hill disturbing!" #ruinamoviequote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Jul 26 16:03:24 +0000 2007',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'MC, Comedian, Owner/Writer of retroCRUSH',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'retrocrush.com',
u'expanded_url': u'http://www.retrocrush.com',
u'indices': [0,
22],
u'url': u'http://t.co/8o68DcClur'}]}},
u'favourites_count': 273,
u'follow_request_sent': False,
u'followers_count': 1028,
u'following': False,
u'friends_count': 1116,
u'geo_enabled': True,
u'id': 7739532,
u'id_str': u'7739532',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 26,
u'location': u'Sacramento, California',
u'name': u'retrocrush',
u'notifications': False,
u'profile_background_color': u'131516',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme14/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme14/bg.gif',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/7739532/1397353636',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/455903163782934528/fl3fGh1l_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/455903163782934528/fl3fGh1l_normal.jpeg',
u'profile_link_color': u'009999',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'EFEFEF',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'retrocrush',
u'statuses_count': 2569,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': u'http://t.co/8o68DcClur',
u'utc_offset': -25200,
u'verified': False}},
u'source': u'web',
u'text': u'RT @retrocrush: "I find your lack of Faith Hill disturbing!" #ruinamoviequote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Apr 11 00:48:14 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Music enthusiast. 18th century romanticist. Sapiosexual. Nyctophiliac. Christian. Fantasy/scifi/anime geek. Open. Odd. Wanderlust. Searching for my tribe.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 501,
u'follow_request_sent': False,
u'followers_count': 268,
u'following': False,
u'friends_count': 198,
u'geo_enabled': False,
u'id': 30356346,
u'id_str': u'30356346',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 3,
u'location': u'Canada',
u'name': u'AlexDeVries',
u'notifications': False,
u'profile_background_color': u'FFFFFF',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/457763892161028097/eWuFEzmm.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/457763892161028097/eWuFEzmm.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/30356346/1398442458',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/455224779981606912/dmbRLzrx_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/455224779981606912/dmbRLzrx_normal.jpeg',
u'profile_link_color': u'000000',
u'profile_sidebar_border_color': u'000000',
u'profile_sidebar_fill_color': u'FFFFFF',
u'profile_text_color': u'000000',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'AlexMDeVries',
u'statuses_count': 3462,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:44:00 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [10, 26],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [27, 36],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987838285488128,
u'id_str': u'460987838285488128',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'Rosebutt. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Mar 22 03:30:01 +0000 2013',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'Love child of Toppie Smellie. Sculptor of doogans. My contempt for humanity cannot be contained in 140. My name is a misnomer. Deal with it.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 4,
u'follow_request_sent': False,
u'followers_count': 8,
u'following': False,
u'friends_count': 27,
u'geo_enabled': False,
u'id': 1287639457,
u'id_str': u'1287639457',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'Tw\xa1tterless T\xa1m',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1287639457/1363923502',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/3412077352/835c85665c72a1d896c2bf8f19e5866c_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3412077352/835c85665c72a1d896c2bf8f19e5866c_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'NakedReporta',
u'statuses_count': 279,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:59 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [12, 28],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [29, 38],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987837538512896,
u'id_str': u'460987837538512896',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'es',
u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'Yoga! Yoga! #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Feb 26 00:02:21 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"I didn't fight my way to the top of the food chain to be a vegetarian",
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'goo.gl/ggXvFA',
u'expanded_url': u'http://goo.gl/ggXvFA',
u'indices': [0, 22],
u'url': u'http://t.co/WCGbTmWeTx'}]}},
u'favourites_count': 2474,
u'follow_request_sent': False,
u'followers_count': 87,
u'following': False,
u'friends_count': 215,
u'geo_enabled': False,
u'id': 257693842,
u'id_str': u'257693842',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 3,
u'location': u'Earth',
u'name': u'Ian',
u'notifications': False,
u'profile_background_color': u'022330',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/449077239/T188.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/449077239/T188.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/257693842/1394653430',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/444296835297845248/LEuI1QX2_normal.png',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/444296835297845248/LEuI1QX2_normal.png',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'A8C7F7',
u'profile_sidebar_fill_color': u'C0DFEC',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'i8dbbq',
u'statuses_count': 5350,
u'time_zone': u'Central Time (US & Canada)',
u'url': u'http://t.co/WCGbTmWeTx',
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:59 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [30, 46],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [47, 56],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987836565442560,
u'id_str': u'460987836565442560',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/devices" rel="nofollow">txt</a>',
u'text': u'Say hello to my little penis. #ruinamoviequote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Mon Dec 14 07:49:06 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"don't get me started on snowglobes.",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 205,
u'follow_request_sent': False,
u'followers_count': 211,
u'following': False,
u'friends_count': 379,
u'geo_enabled': False,
u'id': 96718416,
u'id_str': u'96718416',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 5,
u'location': u'Swag',
u'name': u'Nick Leeman',
u'notifications': False,
u'profile_background_color': u'000000',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/62015032/2009-12-26_00-12-08_99.60.232.49.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/62015032/2009-12-26_00-12-08_99.60.232.49.jpg',
u'profile_background_tile': True,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/574051913/me_normal.jpg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/574051913/me_normal.jpg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'0099FF',
u'profile_sidebar_fill_color': u'990000',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'KersIsTheWord',
u'statuses_count': 8524,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:59 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [50, 66],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 2194939598,
u'id_str': u'2194939598',
u'indices': [3, 14],
u'name': u'Kevin Amold',
u'screen_name': u'AmoldKevin'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [67, 76],
u'name': u'@midnight',
u'screen_name': u'midnight'},
{u'id': 22461427,
u'id_str': u'22461427',
u'indices': [77, 88],
u'name': u'Al Yankovic',
u'screen_name': u'alyankovic'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987835571372032,
u'id_str': u'460987835571372032',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 1,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:42:30 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [34, 50],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [51,
60],
u'name': u'@midnight',
u'screen_name': u'midnight'},
{u'id': 22461427,
u'id_str': u'22461427',
u'indices': [61,
72],
u'name': u'Al Yankovic',
u'screen_name': u'alyankovic'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987462651625472,
u'id_str': u'460987462651625472',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 1,
u'retweeted': False,
u'source': u'web',
u'text': u'Open the pod bay doors, Weird Al! #RuinAMovieQuote @midnight @alyankovic',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Nov 14 22:10:25 +0000 2013',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'What does pride feel like?',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 5634,
u'follow_request_sent': False,
u'followers_count': 212,
u'following': False,
u'friends_count': 316,
u'geo_enabled': False,
u'id': 2194939598,
u'id_str': u'2194939598',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 3,
u'location': u'',
u'name': u'Kevin Amold',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000740457521/e97432aea18de40cf30cdadab2914886_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000740457521/e97432aea18de40cf30cdadab2914886_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'AmoldKevin',
u'statuses_count': 2957,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
u'source': u'web',
u'text': u'RT @AmoldKevin: Open the pod bay doors, Weird Al! #RuinAMovieQuote @midnight @alyankovic',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Feb 10 16:14:14 +0000 2012',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'HuffPo expatriate now on Twitter. Lemon Scented.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 28639,
u'follow_request_sent': False,
u'followers_count': 1665,
u'following': False,
u'friends_count': 1959,
u'geo_enabled': False,
u'id': 488578718,
u'id_str': u'488578718',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 26,
u'location': u'Phoenix, AZ',
u'name': u'Bill',
u'notifications': False,
u'profile_background_color': u'131516',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000081840913/93a3cb375b73604cca14ab05f2e5d4d5.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000081840913/93a3cb375b73604cca14ab05f2e5d4d5.jpeg',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/416192729282920448/agCYqmi2_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/416192729282920448/agCYqmi2_normal.jpeg',
u'profile_link_color': u'009999',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'EFEFEF',
u'profile_text_color': u'333333',
u'profile_use_background_image': False,
u'protected': False,
u'screen_name': u'tomservo10',
u'statuses_count': 11490,
u'time_zone': u'Arizona',
u'url': None,
u'utc_offset': -25200,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:59 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [89, 105],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 35129739,
u'id_str': u'35129739',
u'indices': [3, 17],
u'name': u'Matt Fowler',
u'screen_name': u'TheMattFowler'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [106, 115],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987835496288256,
u'id_str': u'460987835496288256',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 10,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:39:57 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [70, 86],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [87,
96],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 24,
u'favorited': False,
u'geo': None,
u'id': 460986822659944448,
u'id_str': u'460986822659944448',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 10,
u'retweeted': False,
u'source': u'<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
u'text': u'\u201cThe first rule of Fight Club is, you know, just have fun out there.\u201d #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Apr 25 03:14:32 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'(Founder/Writer - http://t.co/DueRlxEs, Writer - IGN TV) Complaining about things in between meals since 1874; http://t.co/MEwuSyvX',
u'entities': {u'description': {u'urls': [{u'display_url': u'Showrenity.com',
u'expanded_url': u'http://Showrenity.com',
u'indices': [18,
38],
u'url': u'http://t.co/DueRlxEs'},
{u'display_url': u'ign.com/tv',
u'expanded_url': u'http://www.ign.com/tv',
u'indices': [111,
131],
u'url': u'http://t.co/MEwuSyvX'}]},
u'url': {u'urls': [{u'display_url': u'Showrenity.com',
u'expanded_url': u'http://Showrenity.com',
u'indices': [0,
20],
u'url': u'http://t.co/DueRlxEs'}]}},
u'favourites_count': 327,
u'follow_request_sent': False,
u'followers_count': 16231,
u'following': False,
u'friends_count': 1362,
u'geo_enabled': True,
u'id': 35129739,
u'id_str': u'35129739',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 395,
u'location': u'D-FW, TX',
u'name': u'Matt Fowler',
u'notifications': False,
u'profile_background_color': u'C3F0F3',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/62632613/2009-12-28_22-04-24_75.24.251.40.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/62632613/2009-12-28_22-04-24_75.24.251.40.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/35129739/1348462036',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/436716575337349121/Y8PJCPI5_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/436716575337349121/Y8PJCPI5_normal.jpeg',
u'profile_link_color': u'53A515',
u'profile_sidebar_border_color': u'9CCF84',
u'profile_sidebar_fill_color': u'DDFFCC',
u'profile_text_color': u'1394A9',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'TheMattFowler',
u'statuses_count': 43717,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': u'http://t.co/DueRlxEs',
u'utc_offset': -25200,
u'verified': False}},
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'RT @TheMattFowler: \u201cThe first rule of Fight Club is, you know, just have fun out there.\u201d #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Sep 01 17:34:01 +0000 2011',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'\u03a9\u0394\u03a6 Cortland',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 1813,
u'follow_request_sent': False,
u'followers_count': 247,
u'following': False,
u'friends_count': 347,
u'geo_enabled': True,
u'id': 366156926,
u'id_str': u'366156926',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 1,
u'location': u'',
u'name': u'Nicky C',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000453408706/b7f5ab843830a34ae73f1ddcd6e23be6_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000453408706/b7f5ab843830a34ae73f1ddcd6e23be6_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Nickcroz',
u'statuses_count': 1515,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:59 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [45, 61],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 23147110,
u'id_str': u'23147110',
u'indices': [3, 14],
u'name': u'MaryCatherine Finney',
u'screen_name': u'mickfinney'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [62, 71],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987835160739840,
u'id_str': u'460987835160739840',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 1,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:05 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [29, 45],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [46,
55],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 2,
u'favorited': False,
u'geo': None,
u'id': 460987608307216386,
u'id_str': u'460987608307216386',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 1,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
u'text': u'You had me at "follow back." #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Mar 07 01:15:36 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"Yes I'm tall; no I don't play basketball.\nMusic Producer @EndlessNoise | Co-Owner/A&R @ProximalRecords. Hockey-playing, sarcasm-wielding, funk-drumming...",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 5074,
u'follow_request_sent': False,
u'followers_count': 1074,
u'following': False,
u'friends_count': 741,
u'geo_enabled': True,
u'id': 23147110,
u'id_str': u'23147110',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 27,
u'location': u'Santa Monica, CA',
u'name': u'MaryCatherine Finney',
u'notifications': False,
u'profile_background_color': u'1A1B1F',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/283165375/65263705_e7f590c998_o.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/283165375/65263705_e7f590c998_o.jpg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/23147110/1350238707',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/440253810473041920/2xmvWl9y_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/440253810473041920/2xmvWl9y_normal.jpeg',
u'profile_link_color': u'3D4487',
u'profile_sidebar_border_color': u'FC0015',
u'profile_sidebar_fill_color': u'FFFFFF',
u'profile_text_color': u'4A4A4A',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'mickfinney',
u'statuses_count': 14936,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': None,
u'utc_offset': -25200,
u'verified': False}},
u'source': u'<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>',
u'text': u'RT @mickfinney: You had me at "follow back." #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Jan 28 04:28:44 +0000 2012',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'PTX are my breath, n my heartbeat. They keep me alive, they control my EVERY emotion. There are no words that exsist that can describe them. Flawless thats all',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 3281,
u'follow_request_sent': False,
u'followers_count': 74,
u'following': False,
u'friends_count': 123,
u'geo_enabled': False,
u'id': 476449372,
u'id_str': u'476449372',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'New York City !',
u'name': u'Vikash Chukkala',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/476449372/1395291372',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/459335251647795200/Lw1A0q14_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/459335251647795200/Lw1A0q14_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'aryazboy',
u'statuses_count': 4726,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:59 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [33, 49],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [50, 59],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987834330267649,
u'id_str': u'460987834330267649',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'Rosebud...or daisies. Whatever. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Mon Nov 30 23:43:48 +0000 2009',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'i like stuff. photographer. traveler. words. the whiskey. ilm, nc',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 1395,
u'follow_request_sent': False,
u'followers_count': 216,
u'following': False,
u'friends_count': 473,
u'geo_enabled': False,
u'id': 93739336,
u'id_str': u'93739336',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'instagram: aleciamit',
u'name': u'alecia mitchell',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/93739336/1371442399',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000004483942/75df70ecd4fee73d6cc6ce540c6975d9_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000004483942/75df70ecd4fee73d6cc6ce540c6975d9_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'aleciamit',
u'statuses_count': 370,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:58 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [87, 103],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [3, 12],
u'name': u'@midnight',
u'screen_name': u'midnight'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [104, 113],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987833637801984,
u'id_str': u'460987833637801984',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 46,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:31:09 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [73, 89],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [90,
99],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 109,
u'favorited': False,
u'geo': None,
u'id': 460984606343168000,
u'id_str': u'460984606343168000',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 46,
u'retweeted': False,
u'source': u'web',
u'text': u'You talkin\u2019 to me? I don\u2019t see a Bluetooth so you must be talkin\u2019 to me. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri May 10 18:11:58 +0000 2013',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Late night game show thing hosted by @nerdist on @ComedyCentral! (account run by a robot & two 15 yr old girls)',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'cc.com/atmidnight',
u'expanded_url': u'http://cc.com/atmidnight',
u'indices': [0,
22],
u'url': u'http://t.co/hKw8FJp9F5'}]}},
u'favourites_count': 18369,
u'follow_request_sent': False,
u'followers_count': 198802,
u'following': False,
u'friends_count': 794,
u'geo_enabled': False,
u'id': 1418745782,
u'id_str': u'1418745782',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 1335,
u'location': u'Home of the #HashtagWars',
u'name': u'@midnight',
u'notifications': False,
u'profile_background_color': u'131516',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000095387197/3e7dd25288ff089f6d09363d88684fe0.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000095387197/3e7dd25288ff089f6d09363d88684fe0.jpeg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1418745782/1398293133',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/459100954520850432/1J_Kr_3Q_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/459100954520850432/1J_Kr_3Q_normal.jpeg',
u'profile_link_color': u'18428F',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'EFEFEF',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'midnight',
u'statuses_count': 8315,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': u'http://t.co/hKw8FJp9F5',
u'utc_offset': -25200,
u'verified': True}},
u'source': u'<a href="https://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
u'text': u'RT @midnight: You talkin\u2019 to me? I don\u2019t see a Bluetooth so you must be talkin\u2019 to me. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Mon Jul 02 11:31:29 +0000 2012',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'#pray for #POTUS #Obama Ps. 109:2-3 Father of three. Husband to @verzatill007',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 1728,
u'follow_request_sent': False,
u'followers_count': 585,
u'following': False,
u'friends_count': 2000,
u'geo_enabled': True,
u'id': 624670764,
u'id_str': u'624670764',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 7,
u'location': u'Chandler, AZ',
u'name': u'P. A. Mendoza',
u'notifications': False,
u'profile_background_color': u'8B542B',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme8/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme8/bg.gif',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/624670764/1369590048',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/3714321043/fbf5a940aebb06188832e94d4f93688e_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3714321043/fbf5a940aebb06188832e94d4f93688e_normal.jpeg',
u'profile_link_color': u'9D582E',
u'profile_sidebar_border_color': u'D9B17E',
u'profile_sidebar_fill_color': u'EADEAA',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'PMendoza602',
u'statuses_count': 3610,
u'time_zone': u'Arizona',
u'url': None,
u'utc_offset': -25200,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:58 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [55, 71],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [45, 54],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987833428103168,
u'id_str': u'460987833428103168',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'Leave the gun, take the organic granola bar. @midnight #RuinAMovieQuote',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Apr 04 22:40:36 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'The head honcho of Game Show Garbage, the home to all of the worst in game shows.',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'gameshowgarbage.com',
u'expanded_url': u'http://www.gameshowgarbage.com',
u'indices': [0, 20],
u'url': u'http://t.co/y16eAgRq'}]}},
u'favourites_count': 4,
u'follow_request_sent': False,
u'followers_count': 158,
u'following': False,
u'friends_count': 164,
u'geo_enabled': False,
u'id': 28886350,
u'id_str': u'28886350',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 5,
u'location': u'Tacoma, Washington',
u'name': u'Robert Seidelman',
u'notifications': False,
u'profile_background_color': u'1A1B1F',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme9/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme9/bg.gif',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/121909229/TTD90DFull_normal.gif',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/121909229/TTD90DFull_normal.gif',
u'profile_link_color': u'2FC2EF',
u'profile_sidebar_border_color': u'181A1E',
u'profile_sidebar_fill_color': u'252429',
u'profile_text_color': u'666666',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'GameShowGarbage',
u'statuses_count': 1022,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': u'http://t.co/y16eAgRq',
u'utc_offset': -25200,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:58 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [10, 26],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [0, 9],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987832631193600,
u'id_str': u'460987832631193600',
u'in_reply_to_screen_name': u'midnight',
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': 1418745782,
u'in_reply_to_user_id_str': u'1418745782',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'@midnight #RuinAMovieQuote "I\'ll have what she\'s having, unless it contains gluten..."',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Dec 23 02:11:02 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Are we having FUN yet???',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'blogbrasky.tumblr.com',
u'expanded_url': u'http://blogbrasky.tumblr.com/',
u'indices': [0, 22],
u'url': u'http://t.co/Da5o7OTyiF'}]}},
u'favourites_count': 383,
u'follow_request_sent': False,
u'followers_count': 95,
u'following': False,
u'friends_count': 442,
u'geo_enabled': False,
u'id': 444247248,
u'id_str': u'444247248',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'Nashville',
u'name': u'St\xe9fan P.',
u'notifications': False,
u'profile_background_color': u'FFF04D',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/438546758742724609/G7oef2DZ.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/438546758742724609/G7oef2DZ.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/444247248/1391527369',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/459713829597769728/mponVU-8_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/459713829597769728/mponVU-8_normal.jpeg',
u'profile_link_color': u'0099CC',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'BlogBrasky',
u'statuses_count': 4537,
u'time_zone': None,
u'url': u'http://t.co/Da5o7OTyiF',
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:58 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [35, 51],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [52, 61],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987831146774528,
u'id_str': u'460987831146774528',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u"I'm getting too old for this 8-Bit #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Apr 01 11:27:04 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"Power Rangers, Pokemon, Digimon, TV and movie enthusiast. I'd probably be in a much sadder place without Twitter. 3DS Friend Code 3695 0669 2199",
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'facebook.com/MarchoftheAnts\u2026',
u'expanded_url': u'https://www.facebook.com/MarchoftheAnts94',
u'indices': [0, 23],
u'url': u'https://t.co/nNrNzX8JQ4'}]}},
u'favourites_count': 2842,
u'follow_request_sent': False,
u'followers_count': 986,
u'following': False,
u'friends_count': 1566,
u'geo_enabled': True,
u'id': 28088585,
u'id_str': u'28088585',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 17,
u'location': u'Long Island',
u'name': u'Scott Sandler',
u'notifications': False,
u'profile_background_color': u'FFFFFF',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000163423329/U2n6Suk-.png',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000163423329/U2n6Suk-.png',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/28088585/1398571839',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/454869364420792320/5BFj-QIJ_normal.png',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/454869364420792320/5BFj-QIJ_normal.png',
u'profile_link_color': u'000DFA',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'FFFFFF',
u'profile_text_color': u'000000',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'DigiRanger1994',
u'statuses_count': 54637,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': u'https://t.co/nNrNzX8JQ4',
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:58 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [84, 100],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [0, 9],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987830614122496,
u'id_str': u'460987830614122496',
u'in_reply_to_screen_name': u'midnight',
u'in_reply_to_status_id': 460984606343168000,
u'in_reply_to_status_id_str': u'460984606343168000',
u'in_reply_to_user_id': 1418745782,
u'in_reply_to_user_id_str': u'1418745782',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
u'text': u"@midnight life is like a box of condoms, she never knows what size she's gonna get. #ruinamoviequote",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Apr 23 22:51:37 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"I'm not an astronaut. I'm an American.",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 2,
u'follow_request_sent': False,
u'followers_count': 62,
u'following': False,
u'friends_count': 267,
u'geo_enabled': True,
u'id': 34759630,
u'id_str': u'34759630',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 1,
u'location': u'',
u'name': u'Tiffo',
u'notifications': False,
u'profile_background_color': u'352726',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme5/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme5/bg.gif',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/34759630/1397266470',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/454793878584197120/1f7xr1cp_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/454793878584197120/1f7xr1cp_normal.jpeg',
u'profile_link_color': u'D02B55',
u'profile_sidebar_border_color': u'829D5E',
u'profile_sidebar_fill_color': u'99CC33',
u'profile_text_color': u'3E4415',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'tiffoelmass',
u'statuses_count': 147,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:58 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [0, 16],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [17, 26],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987830257188865,
u'id_str': u'460987830257188865',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'#RuinAMovieQuote @midnight "Forget it, Jake. It\'s China Express."',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Mon Sep 12 22:39:43 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"Atelophobe. I have more issues than National Geographic. My family found me on Facebook, so I'm on Twitter now.",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 6145,
u'follow_request_sent': False,
u'followers_count': 10181,
u'following': False,
u'friends_count': 9654,
u'geo_enabled': False,
u'id': 372518188,
u'id_str': u'372518188',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 97,
u'location': u'Dallas, Texas',
u'name': u'WesWilliams',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/417821076/Twitter_background_5b.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/417821076/Twitter_background_5b.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/372518188/1362779567',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/2508931847/m39bffqll98slf3l81f8_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/2508931847/m39bffqll98slf3l81f8_normal.jpeg',
u'profile_link_color': u'000099',
u'profile_sidebar_border_color': u'000099',
u'profile_sidebar_fill_color': u'0DB5F7',
u'profile_text_color': u'FFFFFF',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'JWesWilliams',
u'statuses_count': 18294,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:57 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [41, 57],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [31, 40],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987829666213888,
u'id_str': u'460987829666213888',
u'in_reply_to_screen_name': u'midnight',
u'in_reply_to_status_id': 460984606343168000,
u'in_reply_to_status_id_str': u'460984606343168000',
u'in_reply_to_user_id': 1418745782,
u'in_reply_to_user_id_str': u'1418745782',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"We'll always have Paris Hilton @midnight #RuinAMovieQuote",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue Jan 28 00:53:59 +0000 2014',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'Inert nerd alert. http://t.co/1tW5QbMRXS',
u'entities': {u'description': {u'urls': [{u'display_url': u'favstar.fm/users/notalogin',
u'expanded_url': u'http://favstar.fm/users/notalogin',
u'indices': [18,
40],
u'url': u'http://t.co/1tW5QbMRXS'}]}},
u'favourites_count': 1643,
u'follow_request_sent': False,
u'followers_count': 88,
u'following': False,
u'friends_count': 142,
u'geo_enabled': False,
u'id': 2314589768,
u'id_str': u'2314589768',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'New York, NY',
u'name': u'Killer Dinette Set',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/427975172272844800/HNwOn-Ef_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/427975172272844800/HNwOn-Ef_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'notalogin',
u'statuses_count': 610,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:57 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [16, 32],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [33, 42],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987828776628226,
u'id_str': u'460987828776628226',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>',
u'text': u'E.T. text home. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue Apr 17 04:12:47 +0000 2012',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"I teach at a university. I like rhetoric, stand-up comedy & politics; you know, cool things (he said w/o irony). Opinions are mine, but I'm willing to share.",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 71,
u'follow_request_sent': False,
u'followers_count': 122,
u'following': False,
u'friends_count': 184,
u'geo_enabled': False,
u'id': 555660818,
u'id_str': u'555660818',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 3,
u'location': u'Missouri',
u'name': u'Jay Self',
u'notifications': False,
u'profile_background_color': u'FFFFFF',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000147376464/bB6boDdm.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000147376464/bB6boDdm.jpeg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/555660818/1386653131',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000853306691/b317030db9a2f022c9da238286714155_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000853306691/b317030db9a2f022c9da238286714155_normal.jpeg',
u'profile_link_color': u'051BA8',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'C0DFEC',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Humor4Rhetoric',
u'statuses_count': 3792,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:57 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [54, 70],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 8522892,
u'id_str': u'8522892',
u'indices': [3, 13],
u'name': u'Jeff Dwoskin',
u'screen_name': u'bigmacher'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [71, 80],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987828294651904,
u'id_str': u'460987828294651904',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 2,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:33:32 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [39, 55],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [56,
65],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 7,
u'favorited': False,
u'geo': None,
u'id': 460985207907438592,
u'id_str': u'460985207907438592',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 2,
u'retweeted': False,
u'source': u'web',
u'text': u'"I feel the need\u2014the need for heroin!" #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Aug 30 00:26:07 +0000 2007',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Comedian - Executive - Father - Entrepreneur - @absrdnews \nhttp://t.co/KRhwauiffV',
u'entities': {u'description': {u'urls': [{u'display_url': u'favstar.fm/users/bigmache\u2026',
u'expanded_url': u'http://favstar.fm/users/bigmacher/recent',
u'indices': [59,
81],
u'url': u'http://t.co/KRhwauiffV'}]},
u'url': {u'urls': [{u'display_url': u'jeffisfunny.com',
u'expanded_url': u'http://www.jeffisfunny.com',
u'indices': [0,
22],
u'url': u'http://t.co/FgkpQFL52k'}]}},
u'favourites_count': 7638,
u'follow_request_sent': False,
u'followers_count': 28308,
u'following': False,
u'friends_count': 13452,
u'geo_enabled': False,
u'id': 8522892,
u'id_str': u'8522892',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 339,
u'location': u'Detroit, Michigan',
u'name': u'Jeff Dwoskin',
u'notifications': False,
u'profile_background_color': u'9AE4E8',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/311759556/jeffisfunnytwitterbcgrnd.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/311759556/jeffisfunnytwitterbcgrnd.jpg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/8522892/1398217704',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000575169408/235cc183aca1193d012e374f18c85047_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000575169408/235cc183aca1193d012e374f18c85047_normal.jpeg',
u'profile_link_color': u'0000FF',
u'profile_sidebar_border_color': u'87BC44',
u'profile_sidebar_fill_color': u'E0FF92',
u'profile_text_color': u'000000',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'bigmacher',
u'statuses_count': 6338,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': u'http://t.co/FgkpQFL52k',
u'utc_offset': -14400,
u'verified': False}},
u'source': u'web',
u'text': u'RT @bigmacher: "I feel the need\u2014the need for heroin!" #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Feb 18 16:17:54 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'I mostly retweet my hilarious husband @bigmacher and his funny friends. Follow me on Pinterest: http://t.co/Iqc6OVefxM. Detroit, Michigan',
u'entities': {u'description': {u'urls': [{u'display_url': u'pinterest.com/dancinmom333',
u'expanded_url': u'http://pinterest.com/dancinmom333',
u'indices': [96,
118],
u'url': u'http://t.co/Iqc6OVefxM'}]}},
u'favourites_count': 2818,
u'follow_request_sent': False,
u'followers_count': 2801,
u'following': False,
u'friends_count': 2375,
u'geo_enabled': False,
u'id': 21210529,
u'id_str': u'21210529',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 10,
u'location': u'',
u'name': u'Robyn Dwoskin',
u'notifications': False,
u'profile_background_color': u'FF6699',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme11/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme11/bg.gif',
u'profile_background_tile': True,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/79765513/disney08-161_normal.jpg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/79765513/disney08-161_normal.jpg',
u'profile_link_color': u'B40B43',
u'profile_sidebar_border_color': u'CC3366',
u'profile_sidebar_fill_color': u'E5507E',
u'profile_text_color': u'362720',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'robyndwoskin',
u'statuses_count': 2123,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:57 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [102, 118],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 8522892,
u'id_str': u'8522892',
u'indices': [3, 13],
u'name': u'Jeff Dwoskin',
u'screen_name': u'bigmacher'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [119, 128],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987827845480448,
u'id_str': u'460987827845480448',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 5,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:38:14 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [87,
103],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [104,
113],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 13,
u'favorited': False,
u'geo': None,
u'id': 460986388218118144,
u'id_str': u'460986388218118144',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 5,
u'retweeted': False,
u'source': u'web',
u'text': u'"I see dead people who were *so* close to finishing their registration for Obamacare."\n#RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Aug 30 00:26:07 +0000 2007',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Comedian - Executive - Father - Entrepreneur - @absrdnews \nhttp://t.co/KRhwauiffV',
u'entities': {u'description': {u'urls': [{u'display_url': u'favstar.fm/users/bigmache\u2026',
u'expanded_url': u'http://favstar.fm/users/bigmacher/recent',
u'indices': [59,
81],
u'url': u'http://t.co/KRhwauiffV'}]},
u'url': {u'urls': [{u'display_url': u'jeffisfunny.com',
u'expanded_url': u'http://www.jeffisfunny.com',
u'indices': [0,
22],
u'url': u'http://t.co/FgkpQFL52k'}]}},
u'favourites_count': 7638,
u'follow_request_sent': False,
u'followers_count': 28308,
u'following': False,
u'friends_count': 13452,
u'geo_enabled': False,
u'id': 8522892,
u'id_str': u'8522892',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 339,
u'location': u'Detroit, Michigan',
u'name': u'Jeff Dwoskin',
u'notifications': False,
u'profile_background_color': u'9AE4E8',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/311759556/jeffisfunnytwitterbcgrnd.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/311759556/jeffisfunnytwitterbcgrnd.jpg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/8522892/1398217704',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000575169408/235cc183aca1193d012e374f18c85047_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000575169408/235cc183aca1193d012e374f18c85047_normal.jpeg',
u'profile_link_color': u'0000FF',
u'profile_sidebar_border_color': u'87BC44',
u'profile_sidebar_fill_color': u'E0FF92',
u'profile_text_color': u'000000',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'bigmacher',
u'statuses_count': 6338,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': u'http://t.co/FgkpQFL52k',
u'utc_offset': -14400,
u'verified': False}},
u'source': u'<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
u'text': u'RT @bigmacher: "I see dead people who were *so* close to finishing their registration for Obamacare."\n#RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sun Apr 19 00:22:20 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"A good humored smart ass!\r\nOITNB FAN that's also known for doccubus, crisabel and rizzles shipping\r\njust an all around gay gal extraordinaire lol",
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'lovelorn78.tumblr.com',
u'expanded_url': u'http://lovelorn78.tumblr.com',
u'indices': [0, 20],
u'url': u'http://t.co/Ze3xaCws'}]}},
u'favourites_count': 212,
u'follow_request_sent': False,
u'followers_count': 279,
u'following': False,
u'friends_count': 578,
u'geo_enabled': False,
u'id': 33064197,
u'id_str': u'33064197',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'Nola ',
u'name': u'Jane D. Mamerto',
u'notifications': False,
u'profile_background_color': u'020812',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/825865275/6e05a48d548fcc6a2ebda6658d7ea447.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/825865275/6e05a48d548fcc6a2ebda6658d7ea447.jpeg',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/1186843187/Foto-0046_normal.jpg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/1186843187/Foto-0046_normal.jpg',
u'profile_link_color': u'17406C',
u'profile_sidebar_border_color': u'2280A9',
u'profile_sidebar_fill_color': u'020812',
u'profile_text_color': u'2280A9',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'lovelorn78',
u'statuses_count': 3426,
u'time_zone': u'Central Time (US & Canada)',
u'url': u'http://t.co/Ze3xaCws',
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:57 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [40, 56],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [0, 9],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987826621128704,
u'id_str': u'460987826621128704',
u'in_reply_to_screen_name': u'midnight',
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': 1418745782,
u'in_reply_to_user_id_str': u'1418745782',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'@midnight \nMy AOL password. Is it safe? #RuinAMovieQuote',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Dec 19 00:33:56 +0000 2012',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'Animal, vegetable, mineral.\r\nPop Culture Acupuncturist.\r\nFollow me if you laugh.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 28,
u'follow_request_sent': False,
u'followers_count': 1247,
u'following': False,
u'friends_count': 265,
u'geo_enabled': False,
u'id': 1020987421,
u'id_str': u'1020987421',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 4,
u'location': u'NY',
u'name': u'Greg Martin',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/3139153990/eba61685a17cb12ef3449e2c48a69487_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3139153990/eba61685a17cb12ef3449e2c48a69487_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'GregularBasis',
u'statuses_count': 2153,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:57 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [82, 98],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 52529345,
u'id_str': u'52529345',
u'indices': [0, 16],
u'name': u'Michelle Beadle',
u'screen_name': u'MichelleDBeadle'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [99, 108],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987825769308160,
u'id_str': u'460987825769308160',
u'in_reply_to_screen_name': u'MichelleDBeadle',
u'in_reply_to_status_id': 460986913575280641,
u'in_reply_to_status_id_str': u'460986913575280641',
u'in_reply_to_user_id': 52529345,
u'in_reply_to_user_id_str': u'52529345',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"@MichelleDBeadle These are not the 'roids you are looking for. (Arod waives hand) #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri Apr 15 21:36:02 +0000 2011',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'Writer, Comedian, Notary Public',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 38,
u'follow_request_sent': False,
u'followers_count': 32,
u'following': False,
u'friends_count': 49,
u'geo_enabled': False,
u'id': 282761633,
u'id_str': u'282761633',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'Garden Grove, CA',
u'name': u'Matt Hines',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000299958657/602582f70fe38464be8f45de8d01f587_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000299958657/602582f70fe38464be8f45de8d01f587_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'mrhines28',
u'statuses_count': 1665,
u'time_zone': u'Arizona',
u'url': None,
u'utc_offset': -25200,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:57 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [66, 82],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [83, 92],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987825715154944,
u'id_str': u'460987825715154944',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u"When you're pushed *uses inhaler* killing's as easy as breathing. #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Mon Dec 16 04:40:56 +0000 2013',
u'default_profile': True,
u'default_profile_image': False,
u'description': u"I'm the kind of guy who could go through hell and come out laughing",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 506,
u'follow_request_sent': False,
u'followers_count': 30,
u'following': False,
u'friends_count': 57,
u'geo_enabled': False,
u'id': 2228087356,
u'id_str': u'2228087356',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'Bethlehem CT/ Rindge NH',
u'name': u'Dr. Shades',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2228087356/1398388862',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/457695809895927809/pDiTmG0o_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/457695809895927809/pDiTmG0o_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'SPaparazzo',
u'statuses_count': 567,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:57 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [48, 64],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [65, 74],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 1,
u'favorited': False,
u'geo': None,
u'id': 460987825492852737,
u'id_str': u'460987825492852737',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="https://twitter.com/download/android" rel="nofollow">Twitter for Android Tablets</a>',
u'text': u"Luke, I was your father... Now I'm your mother. #ruinamoviequote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue Mar 02 22:26:02 +0000 2010',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'I say stuff sometimes',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 8,
u'follow_request_sent': False,
u'followers_count': 140,
u'following': False,
u'friends_count': 817,
u'geo_enabled': False,
u'id': 119180176,
u'id_str': u'119180176',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'Philly',
u'name': u'Matt Kanoff',
u'notifications': False,
u'profile_background_color': u'DBE9ED',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000160760566/JQ6MkPgi.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000160760566/JQ6MkPgi.jpeg',
u'profile_background_tile': True,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/443763509570981888/J3LFERVd_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/443763509570981888/J3LFERVd_normal.jpeg',
u'profile_link_color': u'335ECC',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'mekanoff',
u'statuses_count': 784,
u'time_zone': u'Quito',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:56 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [52, 68],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': []},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987825434132481,
u'id_str': u'460987825434132481',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'"Does Marcellus Wallace look like a female canine?" #RuinAMovieQuote',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Apr 18 01:19:10 +0000 2012',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Pizza expert PSU 16ish',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 1838,
u'follow_request_sent': False,
u'followers_count': 443,
u'following': False,
u'friends_count': 256,
u'geo_enabled': False,
u'id': 556440734,
u'id_str': u'556440734',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'Pittsburgh',
u'name': u'Eric',
u'notifications': False,
u'profile_background_color': u'131516',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000177129090/rXXHO83o.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000177129090/rXXHO83o.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/556440734/1398711583',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/457244666078183424/1JcmESlz_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/457244666078183424/1JcmESlz_normal.jpeg',
u'profile_link_color': u'1B6907',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Im_Hyland',
u'statuses_count': 391,
u'time_zone': u'Atlantic Time (Canada)',
u'url': None,
u'utc_offset': -10800,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:56 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [76, 92],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [93, 102],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987824854929408,
u'id_str': u'460987824854929408',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'What we have here is a failure to abide by the comment section regulations. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue May 05 15:09:58 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"It's amazing what a negative attitude can accomplish",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 7095,
u'follow_request_sent': False,
u'followers_count': 269,
u'following': False,
u'friends_count': 680,
u'geo_enabled': False,
u'id': 37942235,
u'id_str': u'37942235',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 7,
u'location': u'Toledo',
u'name': u'Cheryl Lightfoot',
u'notifications': False,
u'profile_background_color': u'1A1B1F',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/37942235/1381107692',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000560069821/349074f03d73dc16cb7fe478fbdffd8e_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000560069821/349074f03d73dc16cb7fe478fbdffd8e_normal.jpeg',
u'profile_link_color': u'2FC2EF',
u'profile_sidebar_border_color': u'181A1E',
u'profile_sidebar_fill_color': u'252429',
u'profile_text_color': u'4087F2',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'cal331',
u'statuses_count': 2138,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:56 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [32, 48],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [0, 9],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987824347828225,
u'id_str': u'460987824347828225',
u'in_reply_to_screen_name': u'midnight',
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': 1418745782,
u'in_reply_to_user_id_str': u'1418745782',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
u'text': u'@midnight "GET TO THE CRAPPER!" #RuinAMovieQuote',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed May 02 04:29:32 +0000 2012',
u'default_profile': True,
u'default_profile_image': False,
u'description': u"HUGE @Ravens, Bulldawg(@FootballUGA), and @Braves fan. This is for sports updates. I'm a Sports Guru! Like @MikeandMIKE @HQonESPN @AroundTheHorn and @PTI",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 3116,
u'follow_request_sent': False,
u'followers_count': 45,
u'following': False,
u'friends_count': 188,
u'geo_enabled': False,
u'id': 568874430,
u'id_str': u'568874430',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'ATL ',
u'name': u'TjBrad',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/568874430/1390381961',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/2829950513/9af5bc7e819d850f4c8709c7e85469f6_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/2829950513/9af5bc7e819d850f4c8709c7e85469f6_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'RedRaven770',
u'statuses_count': 2623,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:56 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [46, 62],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [63, 72],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987822292619264,
u'id_str': u'460987822292619264',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"You're gonna need a bigger coat. It's chilly. #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Nov 26 16:42:43 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Spokesman, improviser, comedy snob, all-purpose nerd. Always two steps ahead, but only of myself.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 245,
u'follow_request_sent': False,
u'followers_count': 1328,
u'following': False,
u'friends_count': 494,
u'geo_enabled': False,
u'id': 421969247,
u'id_str': u'421969247',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 19,
u'location': u'Little Rock, AR',
u'name': u'Matt DeCample',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/445706902022795264/dLDQP_OU.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/445706902022795264/dLDQP_OU.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/421969247/1384558477',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000744776398/1999353ee361e25250913359c226a639_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000744776398/1999353ee361e25250913359c226a639_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'000000',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'DeCample',
u'statuses_count': 1883,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:56 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [64, 80],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [81, 90],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987822019588096,
u'id_str': u'460987822019588096',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>',
u'text': u'A man has got to know his limitations on his 401K contributions #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Oct 13 03:38:38 +0000 2011',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 1,
u'follow_request_sent': False,
u'followers_count': 7,
u'following': False,
u'friends_count': 55,
u'geo_enabled': False,
u'id': 389870926,
u'id_str': u'389870926',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 1,
u'location': u'Rochester, MN',
u'name': u'Gary McClannahan',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/1586982743/196880_1627925339140_1266772395_31375987_3451313_n_normal.jpg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/1586982743/196880_1627925339140_1266772395_31375987_3451313_n_normal.jpg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'gpm_eng',
u'statuses_count': 424,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:56 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [29, 45],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [46, 55],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987821990219777,
u'id_str': u'460987821990219777',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'"May the farts be with you." #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Oct 03 19:32:11 +0000 2012',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"Sometimes I write things. Other times, I play video games. All the times, I'm a husband and dad and Jesus-follower. I cannot, in fact, play the ocarina.",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 192,
u'follow_request_sent': False,
u'followers_count': 85,
u'following': False,
u'friends_count': 330,
u'geo_enabled': False,
u'id': 860228791,
u'id_str': u'860228791',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'Dallas',
u'name': u'Jeremy Closs',
u'notifications': False,
u'profile_background_color': u'2D2E2E',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/684918918/eb598435fc267a0921ce5dd47c0f7a31.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/684918918/eb598435fc267a0921ce5dd47c0f7a31.jpeg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/860228791/1358826171',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000679174848/bfc88cbd22c634a0b8033ba63b76d3dc_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000679174848/bfc88cbd22c634a0b8033ba63b76d3dc_normal.jpeg',
u'profile_link_color': u'1F98C7',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'DAECF4',
u'profile_text_color': u'663B12',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'OcarinaHero',
u'statuses_count': 2405,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:56 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [49, 65],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [66, 75],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987821659271168,
u'id_str': u'460987821659271168',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'"Play it Sam, play \'The Thong Song\'"- Ilsa Lund. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Mar 18 04:14:36 +0000 2009',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 122,
u'follow_request_sent': False,
u'followers_count': 124,
u'following': False,
u'friends_count': 484,
u'geo_enabled': False,
u'id': 25026295,
u'id_str': u'25026295',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 4,
u'location': u'Jersey City, NJ',
u'name': u'John Everett',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/3435750337/9ea4d63dbf07a08dbe0120235568e20b_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3435750337/9ea4d63dbf07a08dbe0120235568e20b_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'jeverett15',
u'statuses_count': 5809,
u'time_zone': u'Quito',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:56 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [48, 64],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [65, 74],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987821625704449,
u'id_str': u'460987821625704449',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'Does Marcellus Wallace Look like a Nice Person? #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sun Aug 17 04:44:35 +0000 2008',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'*Chachi Verified* fan of video games & nerdy & comedic things. Pittsburgh Pens fan & Aspiring Comedian & Podcast Host of Bossbattle on http://t.co/GO6wmB4faw',
u'entities': {u'description': {u'urls': [{u'display_url': u'sorgatronmedia.com',
u'expanded_url': u'http://sorgatronmedia.com',
u'indices': [135,
157],
u'url': u'http://t.co/GO6wmB4faw'}]},
u'url': {u'urls': [{u'display_url': u'sharkmullet.wordpress.com',
u'expanded_url': u'http://sharkmullet.wordpress.com/',
u'indices': [0, 22],
u'url': u'http://t.co/CZvQCOWcj2'}]}},
u'favourites_count': 1351,
u'follow_request_sent': False,
u'followers_count': 712,
u'following': False,
u'friends_count': 1990,
u'geo_enabled': False,
u'id': 15879658,
u'id_str': u'15879658',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 26,
u'location': u'Windber/Johnstown PA',
u'name': u'BobbyFJtown',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/758163484/5f040d8fea9a21759331cbf4ffbcb298.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/758163484/5f040d8fea9a21759331cbf4ffbcb298.jpeg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/15879658/1394493953',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/378800000527046807/736406f5823e6103bee74f6b3442f507_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/378800000527046807/736406f5823e6103bee74f6b3442f507_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'BobbyFJtown',
u'statuses_count': 43581,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': u'http://t.co/CZvQCOWcj2',
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:55 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [20, 36],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [37, 46],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987819133894656,
u'id_str': u'460987819133894656',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'"Hulk? Slap-fight." #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sun Jan 15 17:00:49 +0000 2012',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"I'm a cartoonist, writer, and t-shirtomancer. Author of the comics ps238, Full Frontal Nerdity, Nodwick, & others.",
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'dogooderpress.com',
u'expanded_url': u'http://dogooderpress.com',
u'indices': [0, 22],
u'url': u'http://t.co/fknHP5otUs'}]}},
u'favourites_count': 92,
u'follow_request_sent': False,
u'followers_count': 432,
u'following': False,
u'friends_count': 337,
u'geo_enabled': False,
u'id': 464803940,
u'id_str': u'464803940',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 19,
u'location': u'Kansas City, MO',
u'name': u'Aaron Williams',
u'notifications': False,
u'profile_background_color': u'CCDBE3',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/401725698/twitterbkgd.png',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/401725698/twitterbkgd.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/1757067241/SelfPortrait01color_normal.jpg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/1757067241/SelfPortrait01color_normal.jpg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'dogooderpress',
u'statuses_count': 5061,
u'time_zone': u'Central Time (US & Canada)',
u'url': u'http://t.co/fknHP5otUs',
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:55 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [36, 52],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [25, 34],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987818047967232,
u'id_str': u'460987818047967232',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'You completely annoy me @midnight #RuinAMovieQuote',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue Apr 07 18:38:34 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Comedian. Trying to fill my days when the normals are at work.',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'michellesfunny.tumblr.com',
u'expanded_url': u'http://michellesfunny.tumblr.com/',
u'indices': [0, 22],
u'url': u'http://t.co/DxHzj5PoeT'}]}},
u'favourites_count': 1513,
u'follow_request_sent': False,
u'followers_count': 1392,
u'following': False,
u'friends_count': 915,
u'geo_enabled': False,
u'id': 29510760,
u'id_str': u'29510760',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 36,
u'location': u'Toronto',
u'name': u'Michelle Shaughnessy',
u'notifications': False,
u'profile_background_color': u'EBEBEB',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme7/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme7/bg.gif',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/29510760/1396684001',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/459081961730887680/qbjN4o4u_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/459081961730887680/qbjN4o4u_normal.jpeg',
u'profile_link_color': u'990000',
u'profile_sidebar_border_color': u'DFDFDF',
u'profile_sidebar_fill_color': u'F3F3F3',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Michellesfunny',
u'statuses_count': 3136,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': u'http://t.co/DxHzj5PoeT',
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:54 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [25, 41],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [42, 51],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987815674011648,
u'id_str': u'460987815674011648',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'You had me at "Hell no!" #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Oct 17 13:51:51 +0000 2012',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'Writer, performer, bon vivant, celebrity saucier in waiting',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'danhershfield.com',
u'expanded_url': u'http://danhershfield.com',
u'indices': [0, 22],
u'url': u'http://t.co/ZvxWk3fHzB'}]}},
u'favourites_count': 449,
u'follow_request_sent': False,
u'followers_count': 183,
u'following': False,
u'friends_count': 277,
u'geo_enabled': False,
u'id': 886868594,
u'id_str': u'886868594',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'Toronto',
u'name': u'Dan Hershfield',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/2729353473/7d1cdd23717ffbe07e1b857f61d84ff3_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/2729353473/7d1cdd23717ffbe07e1b857f61d84ff3_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'DanHershfield',
u'statuses_count': 2002,
u'time_zone': None,
u'url': u'http://t.co/ZvxWk3fHzB',
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:54 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [19, 35],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [36, 45],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987815497441282,
u'id_str': u'460987815497441282',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'You had me at anal #ruinamoviequote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Mar 12 19:56:39 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'has the grace and beauty of a young Audrey Hepburn.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 28,
u'follow_request_sent': False,
u'followers_count': 80,
u'following': False,
u'friends_count': 242,
u'geo_enabled': False,
u'id': 24020096,
u'id_str': u'24020096',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'LA',
u'name': u'Jason Ryan Simmons',
u'notifications': False,
u'profile_background_color': u'C6E2EE',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme2/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme2/bg.gif',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/2386337373/image_normal.jpg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/2386337373/image_normal.jpg',
u'profile_link_color': u'1F98C7',
u'profile_sidebar_border_color': u'C6E2EE',
u'profile_sidebar_fill_color': u'DAECF4',
u'profile_text_color': u'663B12',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'WangoRyan',
u'statuses_count': 410,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:54 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [53, 69],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [70, 79],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987814357008384,
u'id_str': u'460987814357008384',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>',
u'text': u'"I ate his liver, with some fava beans, and a Zima." #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Feb 10 02:29:59 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Purveyor of Fine Bullshit Since 1972.',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'ThisURLIsTotallyMadeUp.com',
u'expanded_url': u'http://ThisURLIsTotallyMadeUp.com',
u'indices': [0, 22],
u'url': u'http://t.co/fQ9DMANEed'}]}},
u'favourites_count': 130,
u'follow_request_sent': False,
u'followers_count': 166,
u'following': False,
u'friends_count': 143,
u'geo_enabled': False,
u'id': 249935033,
u'id_str': u'249935033',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 6,
u'location': u'By the lake on Naboo',
u'name': u'HootieBlowsFish',
u'notifications': False,
u'profile_background_color': u'131516',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme14/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme14/bg.gif',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/249935033/1396930766',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/1239880561/lincoln_1863_normal.jpg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/1239880561/lincoln_1863_normal.jpg',
u'profile_link_color': u'009999',
u'profile_sidebar_border_color': u'EEEEEE',
u'profile_sidebar_fill_color': u'EFEFEF',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'HootieBlowsFish',
u'statuses_count': 4956,
u'time_zone': u'Quito',
u'url': u'http://t.co/fQ9DMANEed',
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:53 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [17, 33],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [34, 43],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987812561436672,
u'id_str': u'460987812561436672',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': {u'attributes': {},
u'bounding_box': {u'coordinates': [[[-96.196269, 41.190601],
[-95.872275, 41.190601],
[-95.872275, 41.353944],
[-96.196269, 41.353944]]],
u'type': u'Polygon'},
u'contained_within': [],
u'country': u'United States',
u'country_code': u'US',
u'full_name': u'Omaha, NE',
u'id': u'a84b808ce3f11719',
u'name': u'Omaha',
u'place_type': u'city',
u'url': u'https://api.twitter.com/1.1/geo/id/a84b808ce3f11719.json'},
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'E. T. skype home #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sun Dec 25 03:09:58 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"writer's block personified",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 26,
u'follow_request_sent': False,
u'followers_count': 23,
u'following': False,
u'friends_count': 89,
u'geo_enabled': True,
u'id': 445935084,
u'id_str': u'445935084',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'Bellevue, NE',
u'name': u'Edward Portell',
u'notifications': False,
u'profile_background_color': u'131516',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme14/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme14/bg.gif',
u'profile_background_tile': True,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/453089764334260224/dX3sfdw6_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/453089764334260224/dX3sfdw6_normal.jpeg',
u'profile_link_color': u'009999',
u'profile_sidebar_border_color': u'EEEEEE',
u'profile_sidebar_fill_color': u'EFEFEF',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'EdtheHammer',
u'statuses_count': 297,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:53 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [53, 69],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [70, 79],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987812242661378,
u'id_str': u'460987812242661378',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'As God as my witness, I will never go "hangry" again #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Mon Mar 23 22:57:21 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'It was me- I let the dogs out. GR PR Pro- my thoughts are mine and mine alone.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 131,
u'follow_request_sent': False,
u'followers_count': 4711,
u'following': False,
u'friends_count': 385,
u'geo_enabled': True,
u'id': 26113465,
u'id_str': u'26113465',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 6,
u'location': u'Los Angeles',
u'name': u'Sarah Lasky Elison',
u'notifications': False,
u'profile_background_color': u'022330',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme15/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme15/bg.png',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/427618542427443200/Vcy20yvU_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/427618542427443200/Vcy20yvU_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'A8C7F7',
u'profile_sidebar_fill_color': u'C0DFEC',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'sarah_lasky',
u'statuses_count': 506,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': None,
u'utc_offset': -25200,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:53 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [53, 69],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 15576928,
u'id_str': u'15576928',
u'indices': [3, 19],
u'name': u'shauna',
u'screen_name': u'goldengateblond'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [70, 79],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987812079501312,
u'id_str': u'460987812079501312',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 1,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:36:23 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [32, 48],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [49,
58],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 7,
u'favorited': False,
u'geo': None,
u'id': 460985924093231105,
u'id_str': u'460985924093231105',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 1,
u'retweeted': False,
u'source': u'web',
u'text': u"Here's looking at you, Kid Rock #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Jul 24 03:44:09 +0000 2008',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"Writer of words / @Blabberazzi / @WitStreamdotcom / @Impersonals / Loved by gay men the world over / If you had a favorite brazen hussy, I'd be it",
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'blabberazzi.com',
u'expanded_url': u'http://blabberazzi.com',
u'indices': [0,
22],
u'url': u'http://t.co/EF7LSJnIvJ'}]}},
u'favourites_count': 65742,
u'follow_request_sent': False,
u'followers_count': 8535,
u'following': False,
u'friends_count': 697,
u'geo_enabled': True,
u'id': 15576928,
u'id_str': u'15576928',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 1177,
u'location': u'',
u'name': u'shauna',
u'notifications': False,
u'profile_background_color': u'352726',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/24436390/const.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/24436390/const.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/15576928/1397966248',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/435876549594595328/R7vlKDrg_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/435876549594595328/R7vlKDrg_normal.jpeg',
u'profile_link_color': u'960014',
u'profile_sidebar_border_color': u'1F2616',
u'profile_sidebar_fill_color': u'D5DE6D',
u'profile_text_color': u'000000',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'goldengateblond',
u'statuses_count': 7977,
u'time_zone': u'Central Time (US & Canada)',
u'url': u'http://t.co/EF7LSJnIvJ',
u'utc_offset': -18000,
u'verified': False}},
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u"RT @goldengateblond: Here's looking at you, Kid Rock #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Jul 07 14:52:58 +0000 2011',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Bill Sweeney',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'kingpenguinband.com',
u'expanded_url': u'http://kingpenguinband.com',
u'indices': [0, 22],
u'url': u'http://t.co/nVQVZKwNUy'}]}},
u'favourites_count': 3818,
u'follow_request_sent': False,
u'followers_count': 1423,
u'following': False,
u'friends_count': 1644,
u'geo_enabled': True,
u'id': 331027889,
u'id_str': u'331027889',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 45,
u'location': u'',
u'name': u'KingPenguinRock',
u'notifications': False,
u'profile_background_color': u'9AE4E8',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/349066395/pysch.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/349066395/pysch.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/331027889/1398712472',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/460859084854419457/VIKglI7R_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/460859084854419457/VIKglI7R_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'BDDCAD',
u'profile_sidebar_fill_color': u'DDFFCC',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Kingpenguinrock',
u'statuses_count': 32706,
u'time_zone': None,
u'url': u'http://t.co/nVQVZKwNUy',
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:53 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [49, 65],
u'text': u'RuinaMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [0, 9],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987811823620096,
u'id_str': u'460987811823620096',
u'in_reply_to_screen_name': u'midnight',
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': 1418745782,
u'in_reply_to_user_id_str': u'1418745782',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u"@midnight They've taken the hobbits to Wal-Mart! #RuinaMovieQuote",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Apr 15 02:07:12 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'My thoughts and such, 140 characters at a time. Tends to be really loud on Mondays and the occasional Thursday or Friday. Are you not entertained?',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 218,
u'follow_request_sent': False,
u'followers_count': 705,
u'following': False,
u'friends_count': 1859,
u'geo_enabled': False,
u'id': 31305890,
u'id_str': u'31305890',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 16,
u'location': u'Baltimore',
u'name': u'Eddie Mac',
u'notifications': False,
u'profile_background_color': u'131516',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/115433134/Abstract__21_.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/115433134/Abstract__21_.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/31305890/1354493260',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/2237031605/IMG_5555_normal.JPG',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/2237031605/IMG_5555_normal.JPG',
u'profile_link_color': u'009999',
u'profile_sidebar_border_color': u'EEEEEE',
u'profile_sidebar_fill_color': u'EFEFEF',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'notoriouseddie',
u'statuses_count': 18580,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:53 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [0, 16],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': []},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987811223863296,
u'id_str': u'460987811223863296',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'#RuinAMovieQuote Bundy, Cliven Bundy',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Jul 23 17:29:28 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'God\u2019s only begotten son makes a comeback as a pint-sized 12 year old psychologist. Discovering we are all mad...some more than others!',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'askyeshuaonline.com',
u'expanded_url': u'http://www.askyeshuaonline.com',
u'indices': [0, 22],
u'url': u'http://t.co/AkMmSceI7m'}]}},
u'favourites_count': 18,
u'follow_request_sent': False,
u'followers_count': 304,
u'following': False,
u'friends_count': 570,
u'geo_enabled': False,
u'id': 59529934,
u'id_str': u'59529934',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 9,
u'location': u'Chicago',
u'name': u'Yeshua Nazareth',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/238937735/twitterAskYeshua.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/238937735/twitterAskYeshua.jpg',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/529126336/yeshua_normal.gif',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/529126336/yeshua_normal.gif',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'askyeshuaonline',
u'statuses_count': 660,
u'time_zone': u'Central Time (US & Canada)',
u'url': u'http://t.co/AkMmSceI7m',
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:53 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [43, 59],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [33, 42],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987810518810624,
u'id_str': u'460987810518810624',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'"Nobody puts Baby on the corner" @midnight #RuinAMovieQuote',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Mon Mar 15 23:16:30 +0000 2010',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 13,
u'follow_request_sent': False,
u'followers_count': 16,
u'following': False,
u'friends_count': 81,
u'geo_enabled': False,
u'id': 123387681,
u'id_str': u'123387681',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'John Medici',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/123387681/1396590453',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/451656635576889345/D3SOkrLC_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/451656635576889345/D3SOkrLC_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'johnnypump9',
u'statuses_count': 31,
u'time_zone': None,
u'url': None,
u'utc_offset': None,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:53 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [23, 39],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [40, 49],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987809067569152,
u'id_str': u'460987809067569152',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"You had me at 'jello'. #RuinAMovieQuote @midnight",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Wed Aug 08 05:20:55 +0000 2012',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Humor, conviction, old school rap, Nutella ... These things are good. Bigots, apathy, carnival music, mayonnaise... Not so much.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 1717,
u'follow_request_sent': False,
u'followers_count': 158,
u'following': False,
u'friends_count': 738,
u'geo_enabled': False,
u'id': 744498751,
u'id_str': u'744498751',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'Pacific NW, USA',
u'name': u'Silli Gurl',
u'notifications': False,
u'profile_background_color': u'DBE9ED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme17/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme17/bg.gif',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/431118662716489728/P4keFBt8_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/431118662716489728/P4keFBt8_normal.jpeg',
u'profile_link_color': u'CC3366',
u'profile_sidebar_border_color': u'DBE9ED',
u'profile_sidebar_fill_color': u'E6F6F9',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'Sillifunnihappi',
u'statuses_count': 2649,
u'time_zone': u'Arizona',
u'url': None,
u'utc_offset': -25200,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:52 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [36, 52],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [26, 35],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987808153227264,
u'id_str': u'460987808153227264',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'"Luke; I am your farter." @midnight #RuinAMovieQuote',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Nov 21 21:32:32 +0000 2013',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Head of the LadyTalk Institute. Smartmouth, proud vegetarian, chronic gesticulator, swearer and awkward nerd. Breaking nails, dishes and hearts since 1985.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 4998,
u'follow_request_sent': False,
u'followers_count': 173,
u'following': False,
u'friends_count': 344,
u'geo_enabled': False,
u'id': 2207865535,
u'id_str': u'2207865535',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'',
u'name': u'Cherry',
u'notifications': False,
u'profile_background_color': u'FA0A46',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000173907765/Mk148fQg.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000173907765/Mk148fQg.jpeg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2207865535/1398402931',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/460734797828988928/mIL4pth1_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/460734797828988928/mIL4pth1_normal.jpeg',
u'profile_link_color': u'10041A',
u'profile_sidebar_border_color': u'000000',
u'profile_sidebar_fill_color': u'7AC3EE',
u'profile_text_color': u'3D1957',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'LadyTalk85',
u'statuses_count': 4161,
u'time_zone': u'Hobart',
u'url': None,
u'utc_offset': 36000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:52 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [39, 55],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': []},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987806639071232,
u'id_str': u'460987806639071232',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"Frankly my dear, I don't give a Spam. #RuinAMovieQuote",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat May 23 18:15:54 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u"Things I love: Doctor Who, Suicide Girls, Netflix, and a delicious hamburger. Opinions are my own. Love 'em or leave 'em!",
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 320,
u'follow_request_sent': False,
u'followers_count': 120,
u'following': False,
u'friends_count': 597,
u'geo_enabled': True,
u'id': 42070903,
u'id_str': u'42070903',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'Kansas City',
u'name': u'Matthew Ciolek',
u'notifications': False,
u'profile_background_color': u'352726',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme5/bg.gif',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme5/bg.gif',
u'profile_background_tile': False,
u'profile_image_url': u'http://pbs.twimg.com/profile_images/420845463244267521/zp5E1YKy_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/420845463244267521/zp5E1YKy_normal.jpeg',
u'profile_link_color': u'D02B55',
u'profile_sidebar_border_color': u'829D5E',
u'profile_sidebar_fill_color': u'99CC33',
u'profile_text_color': u'3E4415',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'maciolek1s',
u'statuses_count': 1962,
u'time_zone': u'Central Time (US & Canada)',
u'url': None,
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:52 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [20, 36],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': []},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987806408380417,
u'id_str': u'460987806408380417',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"Charlie don't golf! #RuinAMovieQuote",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Tue Sep 15 02:26:25 +0000 2009',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'NASCAR Formula 1 Indycar Longhorns Cowboys Spurs Rangers...Hipster redneck from',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'Instagram.com/scottaltimaman',
u'expanded_url': u'http://Instagram.com/scottaltimaman',
u'indices': [0, 22],
u'url': u'http://t.co/MuWxe6vuu8'}]}},
u'favourites_count': 784,
u'follow_request_sent': False,
u'followers_count': 664,
u'following': False,
u'friends_count': 990,
u'geo_enabled': True,
u'id': 74340446,
u'id_str': u'74340446',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 18,
u'location': u'Austin, TX',
u'name': u'Scott Harrison',
u'notifications': False,
u'profile_background_color': u'000FB8',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/459153999627689984/yAJNJnox.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/459153999627689984/yAJNJnox.jpeg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/74340446/1398648957',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/451191581299580928/CKMZjS9E_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/451191581299580928/CKMZjS9E_normal.jpeg',
u'profile_link_color': u'001FB8',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'95E8EC',
u'profile_text_color': u'3C3940',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'scottaltimaman',
u'statuses_count': 12458,
u'time_zone': u'Central Time (US & Canada)',
u'url': u'http://t.co/MuWxe6vuu8',
u'utc_offset': -18000,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:52 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [21, 37],
u'text': u'ruinamoviequote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [2, 11],
u'name': u'@midnight',
u'screen_name': u'midnight'},
{u'id': 15666380,
u'id_str': u'15666380',
u'indices': [12, 20],
u'name': u'Chris Hardwick',
u'screen_name': u'nerdist'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987806102204416,
u'id_str': u'460987806102204416',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u'. @midnight @nerdist #ruinamoviequote My Name is Inigo Montoya, you killed my father, prepare to be unfriended.',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Thu Sep 18 16:49:29 +0000 2008',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Illegitimate Descendant of Prussian Royalty.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 540,
u'follow_request_sent': False,
u'followers_count': 202,
u'following': False,
u'friends_count': 132,
u'geo_enabled': False,
u'id': 16349172,
u'id_str': u'16349172',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 6,
u'location': u'NY, NY / SL, UT',
u'name': u'Paul Murphy',
u'notifications': False,
u'profile_background_color': u'1A1B1F',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/3069667/map.jpg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/3069667/map.jpg',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/16349172/1398112563',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/450151627995873281/eQITfqcF_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/450151627995873281/eQITfqcF_normal.jpeg',
u'profile_link_color': u'3A7588',
u'profile_sidebar_border_color': u'6E6E6E',
u'profile_sidebar_fill_color': u'2B100D',
u'profile_text_color': u'6E6E6E',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'2DeuceNickel5',
u'statuses_count': 4402,
u'time_zone': u'Mountain Time (US & Canada)',
u'url': None,
u'utc_offset': -21600,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:52 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [27, 43],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [44, 53],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987805431513088,
u'id_str': u'460987805431513088',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'es',
u'metadata': {u'iso_language_code': u'es', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'"YOLO, Adrian!"\n -- Rocky\n\n#RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sun Mar 03 23:14:27 +0000 2013',
u'default_profile': True,
u'default_profile_image': False,
u'description': u'Toujours au bon endroit, au mauvais moment.',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 58,
u'follow_request_sent': False,
u'followers_count': 37,
u'following': False,
u'friends_count': 220,
u'geo_enabled': False,
u'id': 1240060117,
u'id_str': u'1240060117',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'Terrestrial cosmonaut.',
u'name': u'jon-a-thon',
u'notifications': False,
u'profile_background_color': u'C0DEED',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme1/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1240060117/1393396183',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/3335317245/d65484d28b966750bcde0d3cd359ef37_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3335317245/d65484d28b966750bcde0d3cd359ef37_normal.jpeg',
u'profile_link_color': u'0084B4',
u'profile_sidebar_border_color': u'C0DEED',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'aumauvaismoment',
u'statuses_count': 249,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': None,
u'utc_offset': -14400,
u'verified': False}},
{u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:43:52 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [87, 103],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [3, 12],
u'name': u'@midnight',
u'screen_name': u'midnight'},
{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [104, 113],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 460987804697124864,
u'id_str': u'460987804697124864',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 46,
u'retweeted': False,
u'retweeted_status': {u'contributors': None,
u'coordinates': None,
u'created_at': u'Tue Apr 29 03:31:09 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [73, 89],
u'text': u'RuinAMovieQuote'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 1418745782,
u'id_str': u'1418745782',
u'indices': [90,
99],
u'name': u'@midnight',
u'screen_name': u'midnight'}]},
u'favorite_count': 109,
u'favorited': False,
u'geo': None,
u'id': 460984606343168000,
u'id_str': u'460984606343168000',
u'in_reply_to_screen_name': None,
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': None,
u'in_reply_to_user_id_str': None,
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en',
u'result_type': u'recent'},
u'place': None,
u'retweet_count': 46,
u'retweeted': False,
u'source': u'web',
u'text': u'You talkin\u2019 to me? I don\u2019t see a Bluetooth so you must be talkin\u2019 to me. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Fri May 10 18:11:58 +0000 2013',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Late night game show thing hosted by @nerdist on @ComedyCentral! (account run by a robot & two 15 yr old girls)',
u'entities': {u'description': {u'urls': []},
u'url': {u'urls': [{u'display_url': u'cc.com/atmidnight',
u'expanded_url': u'http://cc.com/atmidnight',
u'indices': [0,
22],
u'url': u'http://t.co/hKw8FJp9F5'}]}},
u'favourites_count': 18369,
u'follow_request_sent': False,
u'followers_count': 198802,
u'following': False,
u'friends_count': 794,
u'geo_enabled': False,
u'id': 1418745782,
u'id_str': u'1418745782',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 1335,
u'location': u'Home of the #HashtagWars',
u'name': u'@midnight',
u'notifications': False,
u'profile_background_color': u'131516',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/378800000095387197/3e7dd25288ff089f6d09363d88684fe0.jpeg',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/378800000095387197/3e7dd25288ff089f6d09363d88684fe0.jpeg',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/1418745782/1398293133',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/459100954520850432/1J_Kr_3Q_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/459100954520850432/1J_Kr_3Q_normal.jpeg',
u'profile_link_color': u'18428F',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'EFEFEF',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'midnight',
u'statuses_count': 8315,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': u'http://t.co/hKw8FJp9F5',
u'utc_offset': -25200,
u'verified': True}},
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'RT @midnight: You talkin\u2019 to me? I don\u2019t see a Bluetooth so you must be talkin\u2019 to me. #RuinAMovieQuote @midnight',
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Mon Mar 12 13:53:40 +0000 2012',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'Things I Hate: Lists, Irony, Listing Things, Repetition',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 3277,
u'follow_request_sent': False,
u'followers_count': 119,
u'following': False,
u'friends_count': 206,
u'geo_enabled': True,
u'id': 522269341,
u'id_str': u'522269341',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 2,
u'location': u'Langley, BC',
u'name': u'Dan Turner',
u'notifications': False,
u'profile_background_color': u'022330',
u'profile_background_image_url': u'http://abs.twimg.com/images/themes/theme15/bg.png',
u'profile_background_image_url_https': u'https://abs.twimg.com/images/themes/theme15/bg.png',
u'profile_background_tile': False,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/522269341/1398577471',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/3661520973/8b7528a4923d0c887b1bedc1dde4e52a_normal.jpeg',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/3661520973/8b7528a4923d0c887b1bedc1dde4e52a_normal.jpeg',
u'profile_link_color': u'B30000',
u'profile_sidebar_border_color': u'A8C7F7',
u'profile_sidebar_fill_color': u'C0DFEC',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'DanTurner84',
u'statuses_count': 11670,
u'time_zone': u'Pacific Time (US & Canada)',
u'url': None,
u'utc_offset': -25200,
u'verified': False}}]
In [41]:
search_results['search_metadata'].get('next_results')
Out[41]:
u'?max_id=460953021023666176&q=%23IfICalledACoach&count=100&include_entities=1'
In [42]:
if 'next_results' in search_results['search_metadata']:
next_results = search_results['search_metadata']['next_results']
kwargs = dict([ kv.split('=') for kv in next_results[1:].split("&") ])
search_results = twitter_api.search.tweets(**kwargs)
statuses += search_results['statuses']
len(statuses)
Out[42]:
200
from the command line:
$ mkdir -p data/db
$ mongod --dbpath data/db
In [43]:
c = MongoClient()
In [44]:
db = c.twitter
In [45]:
statuses_ids = db.tweets.insert(statuses)
statuses_ids[:5]
Out[45]:
[ObjectId('535effc85c92ebafda6b2346'),
ObjectId('535effc85c92ebafda6b2347'),
ObjectId('535effc85c92ebafda6b2348'),
ObjectId('535effc85c92ebafda6b2349'),
ObjectId('535effc85c92ebafda6b234a')]
ObjectId is a 12-byte BSON type, constructed using:
In MongoDB, documents stored in a collection require a unique _id
field that acts as a primary key. Because ObjectIds are small, most likely unique, and fast to generate, MongoDB uses ObjectIds as the default value for the _id
field if the _id
field is not specified.
Using ObjectIds for the _id
field provides the following additional benefits:
.generation_time
property in pymongo. _id
field that stores ObjectId values is roughly equivalent to sorting by insertion time.
In [46]:
c.database_names()
Out[46]:
[u'local', u'twitter']
In [47]:
db = c.twitter
db.collection_names()
Out[47]:
[u'system.indexes', u'tweets', u'us', u'canada']
In [48]:
db.tweets.find_one()
Out[48]:
{u'_id': ObjectId('535881025c92eb3899543650'),
u'contributors': None,
u'coordinates': None,
u'created_at': u'Thu Apr 24 02:58:40 +0000 2014',
u'entities': {u'hashtags': [{u'indices': [38, 56],
u'text': u'4DaysUntilProblem'}],
u'symbols': [],
u'urls': [],
u'user_mentions': [{u'id': 34507480,
u'id_str': u'34507480',
u'indices': [0, 13],
u'name': u'Ariana Grande',
u'screen_name': u'ArianaGrande'}]},
u'favorite_count': 0,
u'favorited': False,
u'geo': None,
u'id': 459164493495681024L,
u'id_str': u'459164493495681024',
u'in_reply_to_screen_name': u'ArianaGrande',
u'in_reply_to_status_id': None,
u'in_reply_to_status_id_str': None,
u'in_reply_to_user_id': 34507480,
u'in_reply_to_user_id_str': u'34507480',
u'lang': u'en',
u'metadata': {u'iso_language_code': u'en', u'result_type': u'recent'},
u'place': None,
u'retweet_count': 0,
u'retweeted': False,
u'source': u'web',
u'text': u"@ArianaGrande I'M SOOO EXCITED FOR #4DaysUntilProblem !! PLEASE ARI FOLLOW ME .\n.\n.\n.\n.\n.\n.\n..\n.\n.\n.\n.\n.\n.\n.\n.\n..\n.\n.\n.",
u'truncated': False,
u'user': {u'contributors_enabled': False,
u'created_at': u'Sat Apr 05 16:24:34 +0000 2014',
u'default_profile': False,
u'default_profile_image': False,
u'description': u'',
u'entities': {u'description': {u'urls': []}},
u'favourites_count': 151,
u'follow_request_sent': False,
u'followers_count': 964,
u'following': False,
u'friends_count': 847,
u'geo_enabled': False,
u'id': 2429143602L,
u'id_str': u'2429143602',
u'is_translation_enabled': False,
u'is_translator': False,
u'lang': u'en',
u'listed_count': 0,
u'location': u'',
u'name': u'FOLLOW ME ARIANA',
u'notifications': False,
u'profile_background_color': u'FFFFFF',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/459140585731813377/JI4Oqnqq.png',
u'profile_background_image_url_https': u'https://pbs.twimg.com/profile_background_images/459140585731813377/JI4Oqnqq.png',
u'profile_background_tile': True,
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/2429143602/1398301466',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/459158946851196929/frN59YYU_normal.png',
u'profile_image_url_https': u'https://pbs.twimg.com/profile_images/459158946851196929/frN59YYU_normal.png',
u'profile_link_color': u'C4C0C2',
u'profile_sidebar_border_color': u'FFFFFF',
u'profile_sidebar_fill_color': u'DDEEF6',
u'profile_text_color': u'333333',
u'profile_use_background_image': True,
u'protected': False,
u'screen_name': u'jdbfIops',
u'statuses_count': 2987,
u'time_zone': u'Brasilia',
u'url': None,
u'utc_offset': -10800,
u'verified': False}}
Notice the _id
included in the document along with the values we already saw before.
Now that we have our data in MongoDB, we can use some of it's search functionality. For example:
In [49]:
popular_tweets = db.tweets.find({'retweet_count': {"$gte": 3}})
popular_tweets.count()
Out[49]:
348
In [50]:
pd.DataFrame(list(db.tweets.find(fields=['created_at', 'retweet_count', 'favorite_count'])))
Out[50]:
_id
created_at
favorite_count
retweet_count
0
535881025c92eb3899543650
Thu Apr 24 02:58:40 +0000 2014
0
0
1
535881025c92eb3899543651
Thu Apr 24 02:58:40 +0000 2014
0
1
2
535881025c92eb3899543652
Thu Apr 24 02:58:40 +0000 2014
0
0
3
535881025c92eb3899543653
Thu Apr 24 02:58:40 +0000 2014
0
0
4
535881025c92eb3899543654
Thu Apr 24 02:58:40 +0000 2014
0
0
5
535881025c92eb3899543655
Thu Apr 24 02:58:40 +0000 2014
1
0
6
535881025c92eb3899543656
Thu Apr 24 02:58:40 +0000 2014
0
1
7
535881025c92eb3899543657
Thu Apr 24 02:58:40 +0000 2014
0
3494
8
535881025c92eb3899543658
Thu Apr 24 02:58:40 +0000 2014
0
0
9
535881025c92eb3899543659
Thu Apr 24 02:58:39 +0000 2014
0
0
10
535881025c92eb389954365c
Thu Apr 24 02:58:39 +0000 2014
0
0
11
535881025c92eb389954365a
Thu Apr 24 02:58:39 +0000 2014
0
3
12
535881025c92eb389954365b
Thu Apr 24 02:58:39 +0000 2014
0
3494
13
535881025c92eb389954365d
Thu Apr 24 02:58:38 +0000 2014
0
0
14
535881025c92eb389954365e
Thu Apr 24 02:58:38 +0000 2014
0
0
15
535881025c92eb389954365f
Thu Apr 24 02:58:38 +0000 2014
0
0
16
535881025c92eb3899543660
Thu Apr 24 02:58:38 +0000 2014
0
0
17
535881025c92eb3899543661
Thu Apr 24 02:58:38 +0000 2014
0
2
18
535881025c92eb3899543662
Thu Apr 24 02:58:37 +0000 2014
0
3494
19
535881025c92eb3899543663
Thu Apr 24 02:58:37 +0000 2014
0
3494
20
535881025c92eb3899543664
Thu Apr 24 02:58:37 +0000 2014
0
0
21
535881025c92eb3899543665
Thu Apr 24 02:58:37 +0000 2014
0
1
22
535881025c92eb3899543666
Thu Apr 24 02:58:37 +0000 2014
0
3
23
535881025c92eb3899543667
Thu Apr 24 02:58:37 +0000 2014
0
0
24
535881025c92eb3899543668
Thu Apr 24 02:58:37 +0000 2014
0
0
25
535881025c92eb3899543669
Thu Apr 24 02:58:37 +0000 2014
0
3494
26
535881025c92eb389954366a
Thu Apr 24 02:58:36 +0000 2014
0
3494
27
535881025c92eb389954366b
Thu Apr 24 02:58:36 +0000 2014
0
0
28
535881025c92eb389954366c
Thu Apr 24 02:58:36 +0000 2014
0
0
29
535881025c92eb389954366d
Thu Apr 24 02:58:36 +0000 2014
0
3494
30
535881025c92eb389954366e
Thu Apr 24 02:58:35 +0000 2014
0
0
31
535881025c92eb389954366f
Thu Apr 24 02:58:35 +0000 2014
0
0
32
535881025c92eb3899543670
Thu Apr 24 02:58:35 +0000 2014
0
1
33
535881025c92eb3899543671
Thu Apr 24 02:58:35 +0000 2014
0
0
34
535881025c92eb3899543672
Thu Apr 24 02:58:35 +0000 2014
0
0
35
535881025c92eb3899543673
Thu Apr 24 02:58:35 +0000 2014
0
0
36
535881025c92eb3899543674
Thu Apr 24 02:58:35 +0000 2014
0
6
37
535881025c92eb3899543675
Thu Apr 24 02:58:35 +0000 2014
0
3494
38
535881025c92eb3899543676
Thu Apr 24 02:58:34 +0000 2014
0
0
39
535881025c92eb3899543677
Thu Apr 24 02:58:34 +0000 2014
0
0
40
535881025c92eb3899543678
Thu Apr 24 02:58:34 +0000 2014
0
1
41
535881025c92eb3899543679
Thu Apr 24 02:58:33 +0000 2014
0
0
42
535881025c92eb389954367a
Thu Apr 24 02:58:33 +0000 2014
0
3494
43
535881025c92eb389954367b
Thu Apr 24 02:58:33 +0000 2014
0
3494
44
535881025c92eb389954367c
Thu Apr 24 02:58:33 +0000 2014
0
0
45
535881025c92eb389954367d
Thu Apr 24 02:58:33 +0000 2014
0
1
46
535881025c92eb389954367e
Thu Apr 24 02:58:33 +0000 2014
0
3494
47
535881025c92eb389954367f
Thu Apr 24 02:58:33 +0000 2014
0
0
48
535881025c92eb3899543684
Thu Apr 24 02:58:32 +0000 2014
0
0
49
535881025c92eb3899543680
Thu Apr 24 02:58:33 +0000 2014
0
0
50
535881025c92eb3899543681
Thu Apr 24 02:58:33 +0000 2014
0
3494
51
535881025c92eb3899543682
Thu Apr 24 02:58:32 +0000 2014
0
3494
52
535881025c92eb3899543683
Thu Apr 24 02:58:32 +0000 2014
0
1
53
535881025c92eb3899543685
Thu Apr 24 02:58:31 +0000 2014
0
0
54
535881025c92eb3899543686
Thu Apr 24 02:58:31 +0000 2014
0
3494
55
535881025c92eb3899543687
Thu Apr 24 02:58:31 +0000 2014
0
0
56
535881025c92eb3899543688
Thu Apr 24 02:58:31 +0000 2014
0
3494
57
535881025c92eb3899543689
Thu Apr 24 02:58:31 +0000 2014
0
3494
58
535881025c92eb389954368a
Thu Apr 24 02:58:30 +0000 2014
0
1
59
535881025c92eb389954368b
Thu Apr 24 02:58:30 +0000 2014
0
0
...
...
...
...
899 rows × 4 columns
In [51]:
retweet_favorites = pd.DataFrame(list(db.tweets.find(fields=['created_at','retweet_count','favorite_count'])))
retweet_favorites.head()
Out[51]:
_id
created_at
favorite_count
retweet_count
0
535881025c92eb3899543650
Thu Apr 24 02:58:40 +0000 2014
0
0
1
535881025c92eb3899543651
Thu Apr 24 02:58:40 +0000 2014
0
1
2
535881025c92eb3899543652
Thu Apr 24 02:58:40 +0000 2014
0
0
3
535881025c92eb3899543653
Thu Apr 24 02:58:40 +0000 2014
0
0
4
535881025c92eb3899543654
Thu Apr 24 02:58:40 +0000 2014
0
0
5 rows × 4 columns
.describe()
is a useful method to get the gist of our data.
In [52]:
retweet_favorites.describe()
Out[52]:
favorite_count
retweet_count
count
899.000000
899.000000
mean
0.076752
283.728587
std
0.571896
873.707257
min
0.000000
0.000000
25%
0.000000
0.000000
50%
0.000000
1.000000
75%
0.000000
27.000000
max
8.000000
3950.000000
8 rows × 2 columns
However, when applied to a DataFrame, it only describes numeric columns.
In [53]:
retweet_favorites.dtypes
Out[53]:
_id object
created_at object
favorite_count int64
retweet_count int64
dtype: object
.describe()
can be called on individual columns (i.e. Series
), even if they are not numeric.
In [54]:
retweet_favorites.created_at.describe()
Out[54]:
count 899
unique 239
top Tue Apr 29 00:32:36 +0000 2014
freq 24
Name: created_at, dtype: object
However, in this case created_at
is being treated as a string, which is not very helpful. We can fix that with pandas.to_datetime
:
In [55]:
retweet_favorites.created_at.map(pd.to_datetime).describe()
Out[55]:
count 899
unique 239
first 2014-04-24 02:58:02
last 2014-04-29 01:26:16
top 2014-04-29 00:32:36
freq 24
Name: created_at, dtype: object
Not all that interesting though, since all of these tweets were collected within a couple seconds of each other.
Mongo allows us to access subfields directly.
In [56]:
mentions_followers = list(db.tweets.find(fields=['entities.user_mentions', 'user.followers_count']))
pd.DataFrame(mentions_followers).head()
Out[56]:
_id
entities
user
0
535881025c92eb3899543650
{u'user_mentions': [{u'indices': [0, 13], u'sc...
{u'followers_count': 964}
1
535881025c92eb3899543651
{u'user_mentions': [{u'indices': [3, 18], u'sc...
{u'followers_count': 200}
2
535881025c92eb3899543652
{u'user_mentions': [{u'indices': [0, 13], u'sc...
{u'followers_count': 6}
3
535881025c92eb3899543653
{u'user_mentions': [{u'indices': [0, 13], u'sc...
{u'followers_count': 242}
4
535881025c92eb3899543654
{u'user_mentions': [{u'indices': [11, 24], u's...
{u'followers_count': 3301}
5 rows × 3 columns
Pandas doesn't know how to parse the sub-documents however, so we must tell it explicitly:
In [57]:
mentions_followers_df = pd.DataFrame({'user_mentions': len(tweet['entities']['user_mentions']),
'followers_count': tweet['user'].get('followers_count')} for tweet in mentions_followers)
mentions_followers_df.head()
Out[57]:
followers_count
user_mentions
0
964
1
1
200
2
2
6
2
3
242
1
4
3301
1
5 rows × 2 columns
Perhaps user_mentions
and followers_count
are correlated?
In [58]:
%matplotlib inline
plt.scatter(mentions_followers_df.user_mentions, mentions_followers_df.followers_count)
mentions_followers_df.corr()
Out[58]:
followers_count
user_mentions
followers_count
1.000000
-0.049517
user_mentions
-0.049517
1.000000
2 rows × 2 columns
Perhaps not.
Raise two fingers if you understand the material well.
Raise one finger if you understand this material OK.
Now, 1 find a 2 and sit next to them. While you work through this exercise, only 1's can type.
The Yahoo! Where On Earth ID of Canada is 23424775.
Use it to find Twitter trends in Canada and compare it to US trends. What's the difference between them?
canada
collection. us
collections. follower_count
?
In [59]:
CA_WOE_ID = 23424775
canada_trends = twitter_api.trends.place(_id=CA_WOE_ID)
In [64]:
ca_trends_set = set([trend['name'] for trends in canada_trends
for trend in trends['trends']])
ca_only_trend_set = ca_trends_set.difference(us_trends_set)
us_only_trend_set = us_trends_set.difference(ca_trends_set)
ca_results = list()
ca_only_trends_list = list(ca_trends_set)
for trend in enumerate(ca_only_trends_list):
q = str(trend)
count = 100
search_results = twitter_api.search.tweets(q=q, count=count)
statuses = search_results['statuses']
if len(statuses) > 0:
ca_results.extend(statuses)
us_results = list()
us_only_trends_list = list(us_trends_set)
for trend in enumerate(us_only_trends_list):
q = str(trend)
count = 100
search_results = twitter_api.search.tweets(q=q, count=count)
statuses = search_results['statuses']
if len(statuses) > 0:
us_results.extend(statuses)
if len(ca_results) > 0:
ca_statuses = db.canada.insert(ca_results)
if len(us_results) > 0:
us_statuses = db.us.insert(us_results)
most_followers = list(db.tweets.find(fields=['user.followers_count', 'user.name']))
most_followers_df = pd.DataFrame({'user_name': tweet['user'].get('name'), 'followers_count': tweet['user'].get('followers_count')} for tweet in most_followers)
most_followers_df.sort('followers_count', ascending=False)
# See https://dev.twitter.com/docs/api/1.1/get/search/tweets
set([u'#DWTSShirtOff',
u'#Malkin',
u'#VoiceTop10',
u'#hatty',
u'Damien Sandow',
u'Mike Scott',
u'Vitale',
u"Who's in New York"])
set([u'#BillionaireUndone',
u'#FastFirebirds',
u'#OnTheRunTour',
u'#colorless',
u'Best Kourtney Kardashian',
u'German Suplex',
u'Meryl & Maks',
u'Tom and Jordan'])
Trend: (0, u'Mike Scott')
Trend: (1, u'Last JOX')
Trend: (2, u'#VoiceTop10')
Trend: (3, u'#DWTSShirtOff')
Trend: (4, u'Damien Sandow')
Trend: (5, u'#IfICalledACoach')
Trend: (6, u"Who's in New York")
Trend: (7, u'#Malkin')
Trend: (8, u'#hatty')
Trend: (9, u'Vitale')
14
Trend: (0, u'Last JOX')
Trend: (1, u'#BillionaireUndone')
Trend: (2, u'Best Kourtney Kardashian')
Trend: (3, u'German Suplex')
Trend: (4, u'#IfICalledACoach')
Trend: (5, u'#colorless')
Trend: (6, u'#FastFirebirds')
Trend: (7, u'#OnTheRunTour')
Trend: (8, u'Tom and Jordan')
Trend: (9, u'Meryl & Maks')
3
Out[64]:
followers_count
user_name
142
214075
None
125
214075
None
329
60540
None
101
58673
None
195
49822
None
175
46773
None
123
44067
None
618
38975
None
140
30360
None
177
30360
None
153
30360
None
120
30360
None
71
30356
None
93
30356
None
5
30356
None
98
29263
None
78
24618
None
332
22600
None
148
22356
None
436
20863
None
570
18860
None
20
18490
None
146
18371
None
312
16836
None
381
15108
None
109
15040
None
513
14815
None
58
13303
None
449
12160
None
558
12102
None
560
11373
None
133
11369
None
73
11017
None
166
10100
None
671
8354
None
691
8345
None
150
8323
None
191
8185
None
17
7951
None
637
7927
None
47
7853
None
162
7317
None
82
7271
None
315
7120
None
91
7054
None
485
7051
None
135
6755
None
517
6560
None
659
6148
None
686
6148
None
669
6148
None
15
5875
None
14
5645
None
126
5645
None
559
5638
None
66
5630
None
619
5557
None
179
5538
None
32
5536
None
77
5536
None
...
...
899 rows × 2 columns
In [ ]:
retweeted_us_tweets = list(db.us.find({'retweet_count': {"$gte": 0}})
print(len(retweeted__us_tweets))
retweeted_ca_tweets =
Further exercises:
Content source: hijoumake/DAT6_tt
Similar notebooks: